diff options
author | Jeff Law <law@redhat.com> | 2002-06-13 06:27:50 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2002-06-13 06:27:50 -0600 |
commit | 110b3faa60ed4c40c5107c07b8f9470623d980a4 (patch) | |
tree | 4cf43635751c23c5b313f0fe42b7d0826f1ddf6e /gcc | |
parent | 7f24367410c6bbe8660a1a8b58782d0cbe22a1fc (diff) | |
download | gcc-110b3faa60ed4c40c5107c07b8f9470623d980a4.zip gcc-110b3faa60ed4c40c5107c07b8f9470623d980a4.tar.gz gcc-110b3faa60ed4c40c5107c07b8f9470623d980a4.tar.bz2 |
* i386.md (extenddfxf2, extenddftf2): Fix typo/thinko.
From-SVN: r54583
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dfca31f..d14b1ab 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 094f441..1d1381a 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -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]); }) |