From 139fc12e0f70790ba5dea9afa3b333c23e09e334 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Mon, 5 Oct 1992 06:37:26 +0000 Subject: [PATCH] (allocate_reload_reg): Always check for asm on failure instead of simply aborting. From-SVN: r2324 --- gcc/reload1.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/reload1.c b/gcc/reload1.c index 4374d1f..d9b325b 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -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 (); -- 2.7.4