+2015-05-11 Eric Botcazou <ebotcazou@adacore.com>
+
+ * emit-rtl.c (emit_pattern_after_setloc): Add missing guard.
+ (emit_pattern_before_setloc): Likewise.
+
2015-05-11 Richard Sandiford <richard.sandiford@arm.com>
* genrecog.c (match_pattern_1): Expect the pattern to be a SEQUENCE
after = NEXT_INSN (after);
while (1)
{
- if (active_insn_p (after) && !INSN_LOCATION (after))
+ if (active_insn_p (after)
+ && !JUMP_TABLE_DATA_P (after) /* FIXME */
+ && !INSN_LOCATION (after))
INSN_LOCATION (after) = loc;
if (after == last)
break;
first = NEXT_INSN (first);
while (1)
{
- if (active_insn_p (first) && !INSN_LOCATION (first))
+ if (active_insn_p (first)
+ && !JUMP_TABLE_DATA_P (first) /* FIXME */
+ && !INSN_LOCATION (first))
INSN_LOCATION (first) = loc;
if (first == last)
break;