]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* arm.md (movdi2): Copy non-reg values to DImode registers.
authorRichard Earnshaw <rearnsha@arm.com>
Sat, 16 May 2009 22:45:29 +0000 (22:45 +0000)
committerRichard Earnshaw <rearnsha@gcc.gnu.org>
Sat, 16 May 2009 22:45:29 +0000 (22:45 +0000)
From-SVN: r147625

gcc/ChangeLog
gcc/config/arm/arm.md

index 4dffe1f2204a945ac3eceaada96a8c22d9f438f9..7e7649778528dca6c224868f26cf9914e0ab42e7 100644 (file)
@@ -1,3 +1,7 @@
+2009-05-16  Richard Earnshaw  <rearnsha@arm.com>
+
+       * arm.md (movdi2): Copy non-reg values to DImode registers.
+
 2009-05-16  Richard Earnshaw  <rearnsha@arm.com>
 
        PR target/39501
index fd21179eea9337f0027674a77338f6fa8903e143..1894cec01dc02585b6009db89a4be2fbbc4dee8f 100644 (file)
   if (TARGET_THUMB1)
     {
       if (GET_CODE (operands[1]) != REG)
-        operands[1] = force_reg (SImode, operands[1]);
+        operands[1] = force_reg (DImode, operands[1]);
       if (GET_CODE (operands[2]) != REG)
-        operands[2] = force_reg (SImode, operands[2]);
+        operands[2] = force_reg (DImode, operands[2]);
      }
   "
 )