mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 09:39:03 +08:00
* real.h (struct real_value): Use ENUM_BITFIELD.
From-SVN: r57796
This commit is contained in:
parent
415527360a
commit
a751939354
@ -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.
|
||||
|
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user