Commit b84f9d9c by Richard Stallman

(eliminate_regs_in_insn): Test old_body, not new_body, since

people have tested it that way.

From-SVN: r2879
parent e063ca5c
...@@ -3003,7 +3003,7 @@ eliminate_regs_in_insn (insn, replace) ...@@ -3003,7 +3003,7 @@ eliminate_regs_in_insn (insn, replace)
/* Don't copy an asm_operands because (1) there's no need and (2) /* 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. */ 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); new_body = copy_rtx (new_body);
/* If we had a move insn but now we don't, rerecognize it. */ /* If we had a move insn but now we don't, rerecognize it. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment