diff options
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r-- | gcc/bb-reorder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index d00acf490ad..b3f770d4797 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -1759,7 +1759,7 @@ add_labels_and_missing_jumps (vec<edge> crossing_edges) gcc_assert (single_succ_p (src)); new_jump = emit_jump_insn_after (gen_jump (label), BB_END (src)); - SET_BB_END (src) = new_jump; + BB_END (src) = new_jump; JUMP_LABEL (new_jump) = label; LABEL_NUSES (label) += 1; @@ -2190,7 +2190,7 @@ fix_crossing_unconditional_branches (void) /* Make BB_END for cur_bb be the jump instruction (NOT the barrier instruction at the end of the sequence...). */ - SET_BB_END (cur_bb) = jump_insn; + BB_END (cur_bb) = jump_insn; } } } |