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-decl.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-decl.c')
-rw-r--r-- | gcc/c-decl.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 690d3b3..5cad16e 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -2312,26 +2312,26 @@ implicitly_declare (tree functionid) ID, including a reference to a builtin outside of function-call context. Establish a binding of the identifier to error_mark_node in an appropriate scope, which will suppress further errors for the - same identifier. */ + same identifier. The error message should be given location LOC. */ void -undeclared_variable (tree id) +undeclared_variable (tree id, location_t loc) { static bool already = false; struct c_scope *scope; if (current_function_decl == 0) { - error ("%qE undeclared here (not in a function)", id); + error ("%H%qE undeclared here (not in a function)", &loc, id); scope = current_scope; } else { - error ("%qE undeclared (first use in this function)", id); + error ("%H%qE undeclared (first use in this function)", &loc, id); if (!already) { - error ("(Each undeclared identifier is reported only once"); - error ("for each function it appears in.)"); + error ("%H(Each undeclared identifier is reported only once", &loc); + error ("%Hfor each function it appears in.)", &loc); already = true; } |