projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4155273
)
* real.h (struct real_value): Use ENUM_BITFIELD.
author
Richard Henderson
<rth@redhat.com>
Fri, 4 Oct 2002 00:50:58 +0000
(17:50 -0700)
committer
Richard Henderson
<rth@gcc.gnu.org>
Fri, 4 Oct 2002 00:50:58 +0000
(17:50 -0700)
From-SVN: r57796
gcc/ChangeLog
patch
|
blob
|
history
gcc/real.h
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index 51603723130b0f069b3c6dc84696cb520e9f725b..f1e80bbb866dd8d25dbc1c5fe2d527e8f152598d 100644
(file)
--- a/
gcc/ChangeLog
+++ b/
gcc/ChangeLog
@@
-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.
diff --git
a/gcc/real.h
b/gcc/real.h
index 8244e7f46809004e00d8da2a6c45d080d67cc2dc..900317048f2a8f49fac6abc02273b24b3a3c8a48 100644
(file)
--- 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];