From b84f9d9cd2adf2553daeecf777bc1f347e55862b Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Wed, 16 Dec 1992 03:28:06 +0000 Subject: [PATCH] (eliminate_regs_in_insn): Test old_body, not new_body, since people have tested it that way. From-SVN: r2879 --- gcc/reload1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.30.2