Commit 6241ded1 by Richard Earnshaw Committed by Richard Earnshaw

* arm.md (movdi2): Copy non-reg values to DImode registers.

From-SVN: r147612
parent 29409321
2009-05-16 Richard Earnshaw <rearnsha@arm.com>
* arm.md (movdi2): Copy non-reg values to DImode registers.
2009-05-16 Jakub Jelinek <jakub@redhat.com>
PR target/39942
......
......@@ -472,9 +472,9 @@
if (TARGET_THUMB1)
{
if (GET_CODE (operands[1]) != REG)
operands[1] = force_reg (SImode, operands[1]);
operands[1] = force_reg (DImode, operands[1]);
if (GET_CODE (operands[2]) != REG)
operands[2] = force_reg (SImode, operands[2]);
operands[2] = force_reg (DImode, operands[2]);
}
"
)
......
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