summaryrefslogtreecommitdiff
path: root/gcc/c-parser.c
diff options
context:
space:
mode:
authorNathan Froyd <froydnj@codesourcery.com>2010-04-26 19:10:17 +0000
committerNathan Froyd <froydnj@gcc.gnu.org>2010-04-26 19:10:17 +0000
commit8415f31724e1cb601b97b3f82292a24257cb5ff9 (patch)
tree5d76eb6d77117ebeeac19e76ee6bd90f9bc662bb /gcc/c-parser.c
parent448f65dba370077858a46c17c869c33a12f158a4 (diff)
downloadgcc-8415f31724e1cb601b97b3f82292a24257cb5ff9.tar.gz
c-parser.c (struct c_token): Move location field up.
* c-parser.c (struct c_token): Move location field up. * c-tree.h (struct c_typespec): Move expr_const_operands field up. (struct c_declspecs): Convert typespec_word, storage_class, and default_int_p into bitfields. (struct c_declarator): Move loc field up. From-SVN: r158744
Diffstat (limited to 'gcc/c-parser.c')
-rw-r--r--gcc/c-parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-parser.c b/gcc/c-parser.c
index a8feb27b883..cbdee1eb8a1 100644
--- a/gcc/c-parser.c
+++ b/gcc/c-parser.c
@@ -156,10 +156,10 @@ typedef struct GTY (()) c_token {
/* 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 : 8;
- /* The value associated with this token, if any. */
- tree value;
/* The location at which this token was found. */
location_t location;
+ /* The value associated with this token, if any. */
+ tree value;
} c_token;
/* A parser structure recording information about the state and