aboutsummaryrefslogtreecommitdiff
path: root/gcc/real.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2002-10-03 17:50:58 -0700
committerRichard Henderson <rth@gcc.gnu.org>2002-10-03 17:50:58 -0700
commita751939354133549cd3ddd16a0f529b75c4dc979 (patch)
tree5018edb2ffbe0ae452407c56895d8cbe665a355b /gcc/real.h
parent415527360ae8e12ebbbd0e7b30fa44026da39d49 (diff)
downloadgcc-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/real.h')
-rw-r--r--gcc/real.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/real.h b/gcc/real.h
index 8244e7f..9003170 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];