diff options
Diffstat (limited to 'gcc/c-parser.c')
-rw-r--r-- | gcc/c-parser.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/c-parser.c b/gcc/c-parser.c index aba007c..e89d7df 100644 --- a/gcc/c-parser.c +++ b/gcc/c-parser.c @@ -149,8 +149,6 @@ typedef struct c_token GTY (()) /* 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; - /* True if this token is from a system header. */ - BOOL_BITFIELD in_system_header : 1; /* The value associated with this token, if any. */ tree value; /* The location at which this token was found. */ @@ -206,7 +204,6 @@ c_lex_one_token (c_parser *parser, c_token *token) token->id_kind = C_ID_NONE; token->keyword = RID_MAX; token->pragma_kind = PRAGMA_NONE; - token->in_system_header = in_system_header; switch (token->type) { @@ -545,7 +542,6 @@ c_parser_set_source_position_from_token (c_token *token) if (token->type != CPP_EOF) { input_location = token->location; - in_system_header = token->in_system_header; } } |