aboutsummaryrefslogtreecommitdiff
path: root/libcpp/include/cpplib.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcpp/include/cpplib.h')
-rw-r--r--libcpp/include/cpplib.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libcpp/include/cpplib.h b/libcpp/include/cpplib.h
index 8b84fd76e33..5928f7ba464 100644
--- a/libcpp/include/cpplib.h
+++ b/libcpp/include/cpplib.h
@@ -815,12 +815,12 @@ struct GTY(()) cpp_hashnode {
Otherwise, a NODE_OPERATOR. */
unsigned char rid_code; /* Rid code - for front ends. */
ENUM_BITFIELD(node_type) type : 2; /* CPP node type. */
- unsigned int flags : 14; /* CPP flags. */
+ unsigned int flags : 8; /* CPP flags. */
- /* 32-bits of padding on 64-bit arch. We could shrink this by
- making ht_identifier hold an offset to a trailing string value.
- That would require FE's expose their IDENTIFIER_NODE size to
- us. */
+ /* 6 bits spare (plus another 32 on 64-bit hosts). We could shrink
+ this by making ht_identifier hold an offset to a trailing string
+ value. That would require FE's expose their IDENTIFIER_NODE size
+ to us. */
union _cpp_hashnode_value GTY ((desc ("%1.type"))) value;
};