From: Jeff Law Date: Thu, 13 Jun 2002 12:27:50 +0000 (-0600) Subject: * i386.md (extenddfxf2, extenddftf2): Fix typo/thinko. X-Git-Tag: releases/gcc-3.3.0~4352 X-Git-Url: https://gcc.gnu.org/git/?a=commitdiff_plain;h=110b3faa60ed4c40c5107c07b8f9470623d980a4;p=gcc.git * i386.md (extenddfxf2, extenddftf2): Fix typo/thinko. From-SVN: r54583 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dfca31f7ea50..d14b1ab03166 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2002-06-13 Jeffrey Law + * 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 094f441bfa5b..1d1381ac9f66 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]); })