2010-12-06 Joern Rennecke <amylaar@spamcop.net>
authoramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 6 Dec 2010 19:19:09 +0000 (19:19 +0000)
committeramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 6 Dec 2010 19:19:09 +0000 (19:19 +0000)
    Richard Henderson  <rth@redhat.com>

PR target/46740
* config/vax/vax.c (vax_output_int_move): Fold #if into if.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167512 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/vax/vax.c

index 8fc47bb..285b8b7 100644 (file)
@@ -1,3 +1,9 @@
+2010-12-06  Joern Rennecke  <amylaar@spamcop.net>
+           Richard Henderson  <rth@redhat.com>
+
+       PR target/46740
+       * config/vax/vax.c (vax_output_int_move): Fold #if into if.
+
 2010-12-06  Eric Botcazou  <ebotcazou@adacore.com>
 
        * config/sparc/sol2.h (PUSHSECTION_FORMAT): Redefine unconditionally.
index a9e032a..9656d73 100644 (file)
@@ -1129,18 +1129,16 @@ vax_output_int_move (rtx insn ATTRIBUTE_UNUSED, rtx *operands,
            {
              lval >>= n;
 
-#if HOST_BITS_PER_WIDE_INT == 32
              /* On 32bit platforms, if the 6bits didn't overflow into the
                 upper 32bit value that value better be 0.  If we have
                 overflowed, make sure it wasn't too much.  */
-             if (hval != 0)
+             if (HOST_BITS_PER_WIDE_INT == 32 && hval != 0)
                {
                  if (n <= 26 || hval >= ((unsigned)1 << (n - 26)))
                    n = 0;      /* failure */
                  else
                    lval |= hval << (32 - n);
                }
-#endif
              /*  If n is 0, then ashq is not the best way to emit this.  */
              if (n > 0)
                {