diff options
Diffstat (limited to 'gcc/real.c')
-rw-r--r-- | gcc/real.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/real.c b/gcc/real.c index 3a3f4be50ba..8c5e3fe805b 100644 --- a/gcc/real.c +++ b/gcc/real.c @@ -558,23 +558,6 @@ endian (e, x, mode) abort (); } } - - /* If 32 bits is an entire word for the target, but not for the host, - then sign-extend on the host so that the number will look the same - way on the host that it would on the target. See for instance - simplify_unary_operation. The #if is needed to avoid compiler - warnings. */ - -#if HOST_BITS_PER_WIDE_INT > 32 - if (BITS_PER_WORD < HOST_BITS_PER_WIDE_INT && BITS_PER_WORD == 32) - { - if (x[0] & ((HOST_WIDE_INT) 1 << 31)) - x[0] |= ((HOST_WIDE_INT) (-1) << 32); - - if (x[1] & ((HOST_WIDE_INT) 1 << 31)) - x[1] |= ((HOST_WIDE_INT) (-1) << 32); - } -#endif } |