]> gcc.gnu.org Git - gcc.git/commitdiff
avr-fixed.md (round<mode>3): Use -1U instead of -1 in unsigned int initializers for...
authorGeorg-Johann Lay <avr@gjlay.de>
Fri, 9 May 2014 12:11:30 +0000 (12:11 +0000)
committerGeorg-Johann Lay <gjl@gcc.gnu.org>
Fri, 9 May 2014 12:11:30 +0000 (12:11 +0000)
* config/avr/avr-fixed.md (round<mode>3): Use -1U instead of -1 in
unsigned int initializers for regno_in, regno_out.

From-SVN: r210272

gcc/ChangeLog
gcc/config/avr/avr-fixed.md

index ef75bcb9ff9f05bc64b8e8403723299c92067fc9..70614cf3431f1ad5a88144699113b788a81747e6 100644 (file)
@@ -1,3 +1,8 @@
+2014-05-09  Georg-Johann Lay  <avr@gjlay.de>
+
+       * config/avr/avr-fixed.md (round<mode>3): Use -1U instead of -1 in
+       unsigned int initializers for regno_in, regno_out.
+
 2014-05-09  Georg-Johann Lay  <avr@gjlay.de>
 
        PR target/61055
index 1652415b1d0e8c4a9b0bda31c2cdfad48a09cbda..9c8489edd8eb91da93b0331a92ea694ab26a40a3 100644 (file)
       }
 
     // Input and output of the libgcc function
-    const unsigned int regno_in[]  = { -1, 22, 22, -1, 18 };
-    const unsigned int regno_out[] = { -1, 24, 24, -1, 22 };
+    const unsigned int regno_in[]  = { -1U, 22, 22, -1U, 18 };
+    const unsigned int regno_out[] = { -1U, 24, 24, -1U, 22 };
 
     operands[3] = gen_rtx_REG (<MODE>mode, regno_out[(size_t) GET_MODE_SIZE (<MODE>mode)]);
     operands[4] = gen_rtx_REG (<MODE>mode,  regno_in[(size_t) GET_MODE_SIZE (<MODE>mode)]);
This page took 0.114845 seconds and 5 git commands to generate.