* real.h (struct real_value): Use ENUM_BITFIELD.
authorRichard Henderson <rth@redhat.com>
Fri, 4 Oct 2002 00:50:58 +0000 (17:50 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Fri, 4 Oct 2002 00:50:58 +0000 (17:50 -0700)
From-SVN: r57796

gcc/ChangeLog
gcc/real.h

index 51603723130b0f069b3c6dc84696cb520e9f725b..f1e80bbb866dd8d25dbc1c5fe2d527e8f152598d 100644 (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.
index 8244e7f46809004e00d8da2a6c45d080d67cc2dc..900317048f2a8f49fac6abc02273b24b3a3c8a48 100644 (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];