From: Richard Stallman Date: Wed, 16 Dec 1992 03:28:06 +0000 (+0000) Subject: (eliminate_regs_in_insn): Test old_body, not new_body, since X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b84f9d9cd2adf2553daeecf777bc1f347e55862b;p=gcc.git (eliminate_regs_in_insn): Test old_body, not new_body, since people have tested it that way. From-SVN: r2879 --- diff --git a/gcc/reload1.c b/gcc/reload1.c index 6175b3c42b3..75738ef98bf 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -3003,7 +3003,7 @@ eliminate_regs_in_insn (insn, replace) /* Don't copy an asm_operands because (1) there's no need and (2) copy_rtx can't do it properly when there are multiple outputs. */ - if (! replace && asm_noperands (new_body) < 0) + if (! replace && asm_noperands (old_body) < 0) new_body = copy_rtx (new_body); /* If we had a move insn but now we don't, rerecognize it. */