diff options
author | Richard Henderson <rth@gcc.gnu.org> | 2001-09-07 15:14:43 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-09-07 15:14:43 -0700 |
commit | 4a063bec6e3b164cf467ee99e423f9271177be86 (patch) | |
tree | 356b8d1f15ff4a7a73cc72dae36b54c788ad92b5 /gcc/fold-const.c | |
parent | 2fd7f0c1f8f3efcedf2a466b638a0d95a7398582 (diff) | |
download | gcc-4a063bec6e3b164cf467ee99e423f9271177be86.tar.gz |
c-common.c (signed_or_unsigned_type): Handle machine mode types which have no corresponding C type.
* c-common.c (signed_or_unsigned_type): Handle machine mode types
which have no corresponding C type.
* fold_const.c (target_isinf,target_isnan,target_negative): Update
the representation of 64-bit doubles to work with 64-bit ints.
From-SVN: r45479
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 90d9f16b69e..7cefaeaef0e 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -821,10 +821,10 @@ target_isinf (x) unsigned sign : 1; unsigned exponent : 11; unsigned mantissa1 : 20; - unsigned mantissa2; + unsigned mantissa2 : 32; } little_endian; struct { - unsigned mantissa2; + unsigned mantissa2 : 32; unsigned mantissa1 : 20; unsigned exponent : 11; unsigned sign : 1; @@ -861,10 +861,10 @@ target_isnan (x) unsigned sign : 1; unsigned exponent : 11; unsigned mantissa1 : 20; - unsigned mantissa2; + unsigned mantissa2 : 32; } little_endian; struct { - unsigned mantissa2; + unsigned mantissa2 : 32; unsigned mantissa1 : 20; unsigned exponent : 11; unsigned sign : 1; @@ -901,10 +901,10 @@ target_negative (x) unsigned sign : 1; unsigned exponent : 11; unsigned mantissa1 : 20; - unsigned mantissa2; + unsigned mantissa2 : 32; } little_endian; struct { - unsigned mantissa2; + unsigned mantissa2 : 32; unsigned mantissa1 : 20; unsigned exponent : 11; unsigned sign : 1; |