* real.h (real_value): Make `exp' explicitly signed.

From-SVN: r57469
This commit is contained in:
Kaveh R. Ghazi 2002-09-24 13:13:35 +00:00 committed by Kaveh Ghazi
parent 43a88a8c88
commit 9fc63af58c
2 changed files with 5 additions and 1 deletions

View File

@ -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.

View File

@ -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];
};