Commit bb00f5e7 by Andreas Schwab Committed by Andreas Schwab

re PR bootstrap/83396 (Bootstrap failures with Statement Frontiers)

	PR bootstrap/83396
	* reload1.c (emit_input_reload_insns): Skip debug markers.

From-SVN: r255640
parent 4a0cafdd
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> 2017-12-14 Alexandre Oliva <aoliva@redhat.com>
* config/i386/i386.c (rest_of_insert_endbranch): Use call loc * config/i386/i386.c (rest_of_insert_endbranch): Use call loc
...@@ -7345,12 +7345,12 @@ emit_input_reload_insns (struct insn_chain *chain, struct reload *rl, ...@@ -7345,12 +7345,12 @@ emit_input_reload_insns (struct insn_chain *chain, struct reload *rl,
/* Adjust any debug insns between temp and insn. */ /* Adjust any debug insns between temp and insn. */
while ((temp = NEXT_INSN (temp)) != insn) while ((temp = NEXT_INSN (temp)) != insn)
if (DEBUG_INSN_P (temp)) if (DEBUG_BIND_INSN_P (temp))
INSN_VAR_LOCATION_LOC (temp) INSN_VAR_LOCATION_LOC (temp)
= simplify_replace_rtx (INSN_VAR_LOCATION_LOC (temp), = simplify_replace_rtx (INSN_VAR_LOCATION_LOC (temp),
old, reloadreg); old, reloadreg);
else else
gcc_assert (NOTE_P (temp)); gcc_assert (DEBUG_INSN_P (temp) || NOTE_P (temp));
} }
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment