(allocate_reload_reg): Always check for asm

on failure instead of simply aborting.

From-SVN: r2324
This commit is contained in:
Richard Stallman 1992-10-05 06:37:26 +00:00
parent 280194b05b
commit 139fc12e0f
1 changed files with 2 additions and 1 deletions

View File

@ -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 ();