diff options
author | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-07-20 18:52:04 +0000 |
---|---|---|
committer | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-07-20 18:52:04 +0000 |
commit | c2841599d3b8d3c9e74a2f7c531330a29081eeb0 (patch) | |
tree | b564fb21cd9fbf04b6877b422a888b2ca277fc18 /gcc/bb-reorder.c | |
parent | 79e5afaee6fd1391c10534ea01fbae5721a0a058 (diff) | |
download | gcc-c2841599d3b8d3c9e74a2f7c531330a29081eeb0.tar.gz |
* 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
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r-- | gcc/bb-reorder.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index b88434508bf..fac5b296af2 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); |