PR bootstrap/83396
* reload1.c (emit_input_reload_insns): Skip debug markers.
From-SVN: r255640
+2017-12-14 Andreas Schwab <schwab@linux-m68k.org>
+
+ PR bootstrap/83396
+ * reload1.c (emit_input_reload_insns): Skip debug markers.
+
2017-12-14 Alexandre Oliva <aoliva@redhat.com>
* config/i386/i386.c (rest_of_insert_endbranch): Use call loc
/* Adjust any debug insns between temp and insn. */
while ((temp = NEXT_INSN (temp)) != insn)
- if (DEBUG_INSN_P (temp))
+ if (DEBUG_BIND_INSN_P (temp))
INSN_VAR_LOCATION_LOC (temp)
= simplify_replace_rtx (INSN_VAR_LOCATION_LOC (temp),
old, reloadreg);
else
- gcc_assert (NOTE_P (temp));
+ gcc_assert (DEBUG_INSN_P (temp) || NOTE_P (temp));
}
else
{