diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-04 00:50:58 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-04 00:50:58 +0000 |
commit | 139b2431f3a89d494a7134c78b5567a4f9028fe2 (patch) | |
tree | 5018edb2ffbe0ae452407c56895d8cbe665a355b /gcc/real.h | |
parent | 435f92c16ae7a1da3f5dce46b9f4455c0d31e358 (diff) | |
download | gcc-139b2431f3a89d494a7134c78b5567a4f9028fe2.tar.gz |
* real.h (struct real_value): Use ENUM_BITFIELD.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57796 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/real.h')
-rw-r--r-- | gcc/real.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/real.h b/gcc/real.h index 8244e7f4680..900317048f2 100644 --- a/gcc/real.h +++ b/gcc/real.h @@ -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]; |