Commit 9fc63af5 by Kaveh R. Ghazi Committed by Kaveh Ghazi

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

From-SVN: r57469
parent 43a88a8c
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];
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment