]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Don't use #if inside C test expression.
authorZack Weinberg <zackw@panix.com>
Sat, 4 Aug 2001 20:15:32 +0000 (20:15 +0000)
committerZack Weinberg <zack@gcc.gnu.org>
Sat, 4 Aug 2001 20:15:32 +0000 (20:15 +0000)
From-SVN: r44639

gcc/ChangeLog
gcc/config/sparc/sparc.md

index 9cd98e9767f3a9728d34db698570dab5d57545c6..c45b70589717c3749967632d117d9334d6f223ed 100644 (file)
@@ -1,3 +1,7 @@
+2001-08-04  Zack Weinberg  <zackw@panix.com>
+
+       * sparc.md: Don't use #if inside C test expression.
+
 2001-08-04  Richard Henderson  <rth@redhat.com>
 
        * i386.c: Revert 07-30 ix86_output_main_function_alignment_hack.
index 51a8e70e8a97549ad64327d6aaa1e370ad2eee3c..ee40b6b118e667c4c7d1534ce421605265f63a77 100644 (file)
    && ((GET_CODE (operands[3]) == CONST_DOUBLE
            && CONST_DOUBLE_HIGH (operands[3]) == 0
            && CONST_DOUBLE_LOW (operands[3]) == 0xffffffff)
-#if HOST_BITS_PER_WIDE_INT >= 64
-          || (GET_CODE (operands[3]) == CONST_INT
-              && (unsigned HOST_WIDE_INT) INTVAL (operands[3]) == 0xffffffff)
-#endif
-         )"
+       || (HOST_BITS_PER_WIDE_INT >= 64
+          && GET_CODE (operands[3]) == CONST_INT
+           && (unsigned HOST_WIDE_INT) INTVAL (operands[3]) == 0xffffffff))"
   "srl\\t%1, %2, %0"
   [(set_attr "type" "shift")
    (set_attr "length" "1")])