* i386.md (extenddfxf2, extenddftf2): Fix typo/thinko.

From-SVN: r54583
This commit is contained in:
Jeff Law 2002-06-13 06:27:50 -06:00 committed by Jeff Law
parent 7f24367410
commit 110b3faa60
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
2002-06-13 Jeffrey Law <law@redhat.com>
* i386.md (extenddfxf2, extenddftf2): Fix typo/thinko.
* alias.c (argument_registers): Remove.
(init_alias_once): Initialize static_reg_base_value here. Remove
initialization of argument_registers.

View File

@ -3560,7 +3560,7 @@
/* ??? Needed for compress_float_constant since all fp constants
are LEGITIMATE_CONSTANT_P. */
if (GET_CODE (operands[1]) == CONST_DOUBLE)
operands[1] = validize_mem (force_const_mem (SFmode, operands[1]));
operands[1] = validize_mem (force_const_mem (DFmode, operands[1]));
if (GET_CODE (operands[0]) == MEM && GET_CODE (operands[1]) == MEM)
operands[1] = force_reg (DFmode, operands[1]);
})
@ -3605,7 +3605,7 @@
/* ??? Needed for compress_float_constant since all fp constants
are LEGITIMATE_CONSTANT_P. */
if (GET_CODE (operands[1]) == CONST_DOUBLE)
operands[1] = validize_mem (force_const_mem (SFmode, operands[1]));
operands[1] = validize_mem (force_const_mem (DFmode, operands[1]));
if (GET_CODE (operands[0]) == MEM && GET_CODE (operands[1]) == MEM)
operands[1] = force_reg (DFmode, operands[1]);
})