(allocate_reload_reg): Always check for asm
authorRichard Stallman <rms@gnu.org>
Mon, 5 Oct 1992 06:37:26 +0000 (06:37 +0000)
committerRichard Stallman <rms@gnu.org>
Mon, 5 Oct 1992 06:37:26 +0000 (06:37 +0000)
on failure instead of simply aborting.

From-SVN: r2324

gcc/reload1.c

index 4374d1f633840dbb4b8ca92576391d9ff108de3d..d9b325b7f2a70370c7750da1412bf9fe7bf16b31 100644 (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 ();