diff options
author | Joseph Myers <joseph@codesourcery.com> | 2005-03-02 02:50:25 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2005-03-02 02:50:25 +0000 |
commit | 766beb4020b7f8aa11cbff2fc40cf01f5e36b7c8 (patch) | |
tree | 87b2d47fdc5b99120fde55ab67dd2c05f1a341b4 /gcc/c-parser.c | |
parent | 176a0aad11289b39ab49dda6abc94b69de7fe68d (diff) | |
download | gcc-766beb4020b7f8aa11cbff2fc40cf01f5e36b7c8.zip gcc-766beb4020b7f8aa11cbff2fc40cf01f5e36b7c8.tar.gz gcc-766beb4020b7f8aa11cbff2fc40cf01f5e36b7c8.tar.bz2 |
re PR c/8927 (Gcc give error for wrong line of C code.)
PR c/8927
* c-tree.h (undeclared_variable, build_external_ref): Add extra
argument.
* c-decl.c (undeclared_variable): Take location as argument.
* c-typeck.c (build_external_ref): Likewise.
* c-parser.c (c_parser_postfix_expression): Pass location of
identifier to build_external_ref.
testsuite:
* gcc.dg/pr8927-1.c: New test.
From-SVN: r95773
Diffstat (limited to 'gcc/c-parser.c')
-rw-r--r-- | gcc/c-parser.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/c-parser.c b/gcc/c-parser.c index de6999a..e08f436 100644 --- a/gcc/c-parser.c +++ b/gcc/c-parser.c @@ -4803,10 +4803,11 @@ c_parser_postfix_expression (c_parser *parser) } { tree id = c_parser_peek_token (parser)->value; + location_t loc = c_parser_peek_token (parser)->location; c_parser_consume_token (parser); expr.value = build_external_ref (id, (c_parser_peek_token (parser)->type - == CPP_OPEN_PAREN)); + == CPP_OPEN_PAREN), loc); expr.original_code = ERROR_MARK; } break; |