diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-09-24 13:13:35 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-09-24 13:13:35 +0000 |
commit | 9fc63af58cc65a4a9d0946dd69f0c4091bd7bc8c (patch) | |
tree | 8f91f5e7336727b7ca0ac45bf0b06cff510fed2f /gcc/real.h | |
parent | 43a88a8c88ac10ff01027d55ebcecf711cbeff5e (diff) | |
download | gcc-9fc63af58cc65a4a9d0946dd69f0c4091bd7bc8c.tar.gz |
* real.h (real_value): Make `exp' explicitly signed.
From-SVN: r57469
Diffstat (limited to 'gcc/real.h')
-rw-r--r-- | gcc/real.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/real.h b/gcc/real.h index 6f8f7d8ef04..8dcc54e6098 100644 --- a/gcc/real.h +++ b/gcc/real.h @@ -44,7 +44,7 @@ struct real_value GTY(()) { enum real_value_class class : 2; unsigned int sign : 1; - int exp : EXP_BITS; + signed int exp : EXP_BITS; unsigned long sig[SIGSZ]; }; |