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
+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.
{
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)
{