Commit 458c16f7 by Jeff Law

Fix thinko in last change.

From-SVN: r12335
parent ea06b0ed
...@@ -5290,7 +5290,11 @@ ...@@ -5290,7 +5290,11 @@
{ {
operands[2] = gen_reg_rtx (SImode); operands[2] = gen_reg_rtx (SImode);
if (GET_CODE (operands[1]) != REG) if (GET_CODE (operands[1]) != REG)
force_reg (SImode, operands[1]); {
rtx tmp = gen_reg_rtx (Pmode);
emit_move_insn (tmp, operands[1]);
operands[1] = tmp;
}
}") }")
(define_insn "" (define_insn ""
......
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