* real.h (real_value): Make `exp' explicitly signed.
From-SVN: r57469
This commit is contained in:
parent
43a88a8c88
commit
9fc63af58c
2 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue