]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* config/xtensa/xtensa.c (xtensa_output_literal): Don't use #if.
authorBob Wilson <bob.wilson@acm.org>
Wed, 9 May 2007 19:13:59 +0000 (19:13 +0000)
committerBob Wilson <bwilson@gcc.gnu.org>
Wed, 9 May 2007 19:13:59 +0000 (19:13 +0000)
From-SVN: r124579

gcc/ChangeLog
gcc/config/xtensa/xtensa.c

index 36211dc2d6cdbbb4e69a25cf72f54f304892a8fe..afae5e268fa583fcdbb1322051e67d534b722dd9 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-09  Bob Wilson  <bob.wilson@acm.org>
+       
+       * config/xtensa/xtensa.c (xtensa_output_literal): Don't use #if.
+       
 2007-05-09  Bob Wilson  <bob.wilson@acm.org>
 
        * config/xtensa/xtensa.c (xtensa_output_literal): Mask out high bits
index 81e7797c6b52868a853bf5b9df64bb3e887c4d30..c331a7f27adb3562082e569ad657bc421bd73ba3 100644 (file)
@@ -1953,18 +1953,18 @@ xtensa_output_literal (FILE *file, rtx x, enum machine_mode mode, int labelno)
        {
        case SFmode:
          REAL_VALUE_TO_TARGET_SINGLE (r, value_long[0]);
-#if HOST_BITS_PER_LONG > 32
-         value_long[0] &= 0xffffffff;
-#endif
+         if (HOST_BITS_PER_LONG > 32)
+           value_long[0] &= 0xffffffff;
          fprintf (file, "0x%08lx\n", value_long[0]);
          break;
 
        case DFmode:
          REAL_VALUE_TO_TARGET_DOUBLE (r, value_long);
-#if HOST_BITS_PER_LONG > 32
-         value_long[0] &= 0xffffffff;
-         value_long[1] &= 0xffffffff;
-#endif
+         if (HOST_BITS_PER_LONG > 32)
+           {
+             value_long[0] &= 0xffffffff;
+             value_long[1] &= 0xffffffff;
+           }
          fprintf (file, "0x%08lx, 0x%08lx\n",
                   value_long[0], value_long[1]);
          break;