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

From-SVN: r57796
This commit is contained in:
Richard Henderson 2002-10-03 17:50:58 -07:00 committed by Richard Henderson
parent 415527360a
commit a751939354
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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.

View File

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