mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 18:59:50 +08:00
* real.h (real_value): Make `exp' explicitly signed.
From-SVN: r57469
This commit is contained in:
parent
43a88a8c88
commit
9fc63af58c
@ -1,3 +1,7 @@
|
||||
2002-09-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* real.h (real_value): Make `exp' explicitly signed.
|
||||
|
||||
2002-09-24 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* config/elfos.h: Follow spelling conventions.
|
||||
|
@ -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];
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user