diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 1 | ||||
-rw-r--r-- | gcc/cp/parser.c | 5 |
3 files changed, 12 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 5c02ee9..2d99992 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,11 @@ +2005-03-11 Per Bothner <per@bothner.com> + + * cp-tree.h (struct cp_declarator): New id_loc field. + * cp/parser.c (cp_lexer_get_preprocessor_token): Set cp_token's + location using c_lex_with_flags, instead of input_location. + (cp_parser_direct_declarator): Set declarator's id_loc from + cp_token's id_loc. + 2005-03-10 Jakub Jelinek <jakub@redhat.com> PR c++/18384, c++/18327 diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index 22d5f17..aef5637 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -3597,6 +3597,7 @@ struct cp_declarator { /* For all but cdk_id and cdk_error, the contained declarator. For cdk_id and cdk_error, guaranteed to be NULL. */ cp_declarator *declarator; + location_t id_loc; /* Currently only set for cdk_id. */ union { /* For identifiers. */ struct { diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 3db7f2e..6fb9fca 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -380,8 +380,8 @@ cp_lexer_get_preprocessor_token (cp_lexer *lexer ATTRIBUTE_UNUSED , static int is_extern_c = 0; /* Get a new token from the preprocessor. */ - token->type = c_lex_with_flags (&token->value, &token->flags); - token->location = input_location; + token->type + = c_lex_with_flags (&token->value, &token->location, &token->flags); token->in_system_header = in_system_header; /* On some systems, some header files are surrounded by an @@ -11188,6 +11188,7 @@ cp_parser_direct_declarator (cp_parser* parser, declarator = make_id_declarator (qualifying_scope, unqualified_name); + declarator->id_loc = token->location; if (unqualified_name) { tree class_type; |