diff options
author | Richard Henderson <rth@redhat.com> | 2002-10-03 17:50:58 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-10-03 17:50:58 -0700 |
commit | a751939354133549cd3ddd16a0f529b75c4dc979 (patch) | |
tree | 5018edb2ffbe0ae452407c56895d8cbe665a355b /gcc | |
parent | 415527360ae8e12ebbbd0e7b30fa44026da39d49 (diff) | |
download | gcc-a751939354133549cd3ddd16a0f529b75c4dc979.zip gcc-a751939354133549cd3ddd16a0f529b75c4dc979.tar.gz gcc-a751939354133549cd3ddd16a0f529b75c4dc979.tar.bz2 |
* real.h (struct real_value): Use ENUM_BITFIELD.
From-SVN: r57796
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/real.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5160372..f1e80bb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 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]; |