bb-reorder.c (fix_crossing_conditional_branches): Fix crash by removing now-unnecessary assignment.

* bb-reorder.c (fix_crossing_conditional_branches): Fix crash by
	removing now-unnecessary assignment.

From-SVN: r176533
This commit is contained in:
Ulrich Weigand 2011-07-20 18:52:04 +00:00 committed by Ulrich Weigand
parent 458f8a16a1
commit 742f29abe4
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2011-07-20 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
* bb-reorder.c (fix_crossing_conditional_branches): Fix crash by
removing now-unnecessary assignment.
2011-07-20 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
* emit-rtl.c (set_mem_attributes_minus_bitpos): Restore setting

View file

@ -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);