]> gcc.gnu.org Git - gcc.git/commitdiff
* i386.md (extenddfxf2, extenddftf2): Fix typo/thinko.
authorJeff Law <law@redhat.com>
Thu, 13 Jun 2002 12:27:50 +0000 (06:27 -0600)
committerJeff Law <law@gcc.gnu.org>
Thu, 13 Jun 2002 12:27:50 +0000 (06:27 -0600)
From-SVN: r54583

gcc/ChangeLog
gcc/config/i386/i386.md

index dfca31f7ea50aa78246fb0d9f99d92051101d88e..d14b1ab031662e5bde055ea834b12ccf3277da95 100644 (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.
index 094f441bfa5bde3f525cd2c0e2ad588ca76a891a..1d1381ac9f66ab6e5dc15722cbfe697b3cbeaca6 100644 (file)
   /* ??? 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]);
 })
   /* ??? 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]);
 })
This page took 0.172701 seconds and 5 git commands to generate.