Commit 34289d57 by Jan Hubicka Committed by Jeff Law

i386.md (extend?f?f2): Force the input into a register, not the output.

        * i386.md (extend?f?f2): Force the input into a register, not
        the output.

From-SVN: r30754
parent d343f715
Wed Dec 1 18:16:38 1999 Jan Hubicka <hubicka@freesoft.cz>
* i386.md (extend?f?f2): Force the input into a register, not
the output.
1999-12-01 Jakub Jelinek <jakub@redhat.com>
* config/sparc/sparc.md (movsf_const_intreg): Add constraints for
......
......@@ -2431,7 +2431,7 @@
"
{
if (GET_CODE (operands[0]) == MEM && GET_CODE (operands[1]) == MEM)
operands[0] = force_reg (DFmode, operands[0]);
operands[1] = force_reg (SFmode, operands[1]);
}")
(define_insn "*extendsfdf2_1"
......@@ -2472,7 +2472,7 @@
"
{
if (GET_CODE (operands[0]) == MEM && GET_CODE (operands[1]) == MEM)
operands[0] = force_reg (XFmode, operands[0]);
operands[1] = force_reg (SFmode, operands[1]);
}")
(define_insn "*extendsfxf2_1"
......@@ -2514,7 +2514,7 @@
"
{
if (GET_CODE (operands[0]) == MEM && GET_CODE (operands[1]) == MEM)
operands[0] = force_reg (XFmode, operands[0]);
operands[1] = force_reg (DFmode, operands[1]);
}")
(define_insn "*extenddfxf2_1"
......
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