From: uweigand Date: Wed, 20 Jul 2011 18:52:04 +0000 (+0000) Subject: * bb-reorder.c (fix_crossing_conditional_branches): Fix crash by X-Git-Tag: upstream/4.9.2~19226 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c2841599d3b8d3c9e74a2f7c531330a29081eeb0;p=platform%2Fupstream%2Flinaro-gcc.git * bb-reorder.c (fix_crossing_conditional_branches): Fix crash by removing now-unnecessary assignment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@176533 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 23fcd05..b3011fd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2011-07-20 Ulrich Weigand + * bb-reorder.c (fix_crossing_conditional_branches): Fix crash by + removing now-unnecessary assignment. + +2011-07-20 Ulrich Weigand + * emit-rtl.c (set_mem_attributes_minus_bitpos): Restore setting memory address space to the type's address space. diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index b884345..fac5b29 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -1603,7 +1603,6 @@ fix_crossing_conditional_branches (void) new_label = gen_label_rtx (); emit_label (new_label); - BB_HEAD (new_bb) = new_label; gcc_assert (GET_CODE (old_label) == LABEL_REF); old_label = JUMP_LABEL (old_jump);