mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-22 10:51:19 +08:00
PR c/38416, make pragma_kind 8 bits
From-SVN: r142493
This commit is contained in:
parent
00ad9a06d6
commit
13fa117156
@ -1,3 +1,8 @@
|
||||
2008-12-05 Michael Meissner <meissner@linux.vnet.ibm.com>
|
||||
|
||||
PR c/38416
|
||||
* c-parser.c (struct c_token): Make pragma_kind 8 bits.
|
||||
|
||||
2008-12-05 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR middle-end/37248
|
||||
|
@ -148,7 +148,7 @@ typedef struct c_token GTY (())
|
||||
ENUM_BITFIELD (rid) keyword : 8;
|
||||
/* If this token is a CPP_PRAGMA, this indicates the pragma that
|
||||
was seen. Otherwise it is PRAGMA_NONE. */
|
||||
ENUM_BITFIELD (pragma_kind) pragma_kind : 7;
|
||||
ENUM_BITFIELD (pragma_kind) pragma_kind : 8;
|
||||
/* The value associated with this token, if any. */
|
||||
tree value;
|
||||
/* The location at which this token was found. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user