Fix thinko in last change.

From-SVN: r12335
This commit is contained in:
Jeff Law 1996-06-26 17:25:22 -06:00
parent ea06b0ed75
commit 458c16f71e

View File

@ -5290,7 +5290,11 @@
{
operands[2] = gen_reg_rtx (SImode);
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 ""