Commit a7519393 by Richard Henderson Committed by Richard Henderson

* real.h (struct real_value): Use ENUM_BITFIELD.

From-SVN: r57796
parent 41552736
2002-10-03 Richard Henderson <rth@redhat.com>
* real.h (struct real_value): Use ENUM_BITFIELD.
2002-10-03 Richard Henderson <rth@redhat.com>
* config/i960/i960.md (call, call_value): Use emit_call_insn.
2002-10-03 Steve Ellcey <sje@cup.hp.com>
......
......@@ -42,7 +42,7 @@ enum real_value_class {
struct real_value GTY(())
{
enum real_value_class class : 2;
ENUM_BITFIELD (real_value_class) class : 2;
unsigned int sign : 1;
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