From a3ec87a808991cb957be7d08687b93100f9fecb2 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Wed, 13 Jan 1993 02:04:37 +0000 Subject: [PATCH] (reload): Clear reload_in_progress even if reloading fails. From-SVN: r3215 --- gcc/reload1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/reload1.c b/gcc/reload1.c index d005ebe728f..7afe7efba79 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -1829,12 +1829,12 @@ reload (first, global, dumpfile) basic_block_live_at_start[i][FRAME_POINTER_REGNUM / REGSET_ELT_BITS] &= ~ ((REGSET_ELT_TYPE) 1 << (FRAME_POINTER_REGNUM % REGSET_ELT_BITS)); - reload_in_progress = 0; - /* Come here (with failure set nonzero) if we can't get enough spill regs and we decide not to abort about it. */ failed: + reload_in_progress = 0; + /* Now eliminate all pseudo regs by modifying them into their equivalent memory references. The REG-rtx's for the pseudos are modified in place, -- 2.30.2