Commit 139fc12e by Richard Stallman

(allocate_reload_reg): Always check for asm

on failure instead of simply aborting.

From-SVN: r2324
parent 280194b0
......@@ -4033,7 +4033,7 @@ allocate_reload_reg (r, insn, last_reload, noerror)
{
if (noerror)
return 0;
abort ();
goto failure;
}
last_spill_reg = i;
......@@ -4076,6 +4076,7 @@ allocate_reload_reg (r, insn, last_reload, noerror)
if (noerror)
return 0;
failure:
if (asm_noperands (PATTERN (insn)) < 0)
/* It's the compiler's fault. */
abort ();
......
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