+2011-05-24 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
+
+ PR rtl-optimization/49007
+ Backport from mainline:
+ 2009-11-30 Hans-Peter Nilsson <hp@axis.com>
+
+ PR rtl-optimization/40086
+ * reorg.c (relax_delay_slots): When looking for redundant insn at
+ the branch target, use next_real_insn, not next_active_insn.
+
2011-05-14 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR rtl-optimization/48932
}
/* If the first insn at TARGET_LABEL is redundant with a previous
- insn, redirect the jump to the following insn process again. */
- trial = next_active_insn (target_label);
+ insn, redirect the jump to the following insn and process again.
+ We use next_real_insn instead of next_active_insn so we
+ don't skip USE-markers, or we'll end up with incorrect
+ liveness info. */
+ trial = next_real_insn (target_label);
if (trial && GET_CODE (PATTERN (trial)) != SEQUENCE
&& redundant_insn (trial, insn, 0)
&& ! can_throw_internal (trial))