diff options
| author | mrg <mrg@NetBSD.org> | 2001-10-26 03:14:55 +0000 |
|---|---|---|
| committer | mrg <mrg@NetBSD.org> | 2001-10-26 03:14:55 +0000 |
| commit | 857523fed5db676adea5b0715e115ca7f47d4e7e (patch) | |
| tree | 804b1f1a83b46edc7be4f37e7b009bf4a169d928 /gnu | |
| parent | dddb1ab51dbac970ba185b95afa892a48dd20551 (diff) | |
fix a compile error when _not_:
#if HOST_BITS_PER_WIDE_INT == 32
found building cross powerpc compiler on sparc64 host.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/dist/toolchain/gcc/config/rs6000/rs6000.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/dist/toolchain/gcc/config/rs6000/rs6000.c b/gnu/dist/toolchain/gcc/config/rs6000/rs6000.c index d184d5acdb6..5cba51cb194 100644 --- a/gnu/dist/toolchain/gcc/config/rs6000/rs6000.c +++ b/gnu/dist/toolchain/gcc/config/rs6000/rs6000.c @@ -1004,8 +1004,9 @@ non_logical_u_cint_operand (op, mode) && CONST_DOUBLE_HIGH (op) == 0 && (CONST_DOUBLE_LOW (op) & (~ (HOST_WIDE_INT) 0xffff)) != 0 && (CONST_DOUBLE_LOW (op) - & (~ (unsigned HOST_WIDE_INT) 0xffff0000u)) != 0)); + & (~ (unsigned HOST_WIDE_INT) 0xffff0000u)) != 0) #endif + ); } /* Return 1 if C is a constant that can be encoded in a 32-bit mask on the |
