diff options
| author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-02 02:50:25 +0000 |
|---|---|---|
| committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-02 02:50:25 +0000 |
| commit | 8dc938b96836b81a9641e3d0815aa1338a99b17c (patch) | |
| tree | 87b2d47fdc5b99120fde55ab67dd2c05f1a341b4 /gcc/c-typeck.c | |
| parent | 35d8b8ba32a7d9dc2d24ca3edf1aaccf2c467c52 (diff) | |
| download | ppe42-gcc-8dc938b96836b81a9641e3d0815aa1338a99b17c.tar.gz ppe42-gcc-8dc938b96836b81a9641e3d0815aa1338a99b17c.zip | |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95773 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-typeck.c')
| -rw-r--r-- | gcc/c-typeck.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 3a38d22923b..ea1c81c7435 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -1787,9 +1787,10 @@ build_array_ref (tree array, tree index) } /* Build an external reference to identifier ID. FUN indicates - whether this will be used for a function call. */ + whether this will be used for a function call. LOC is the source + location of the identifier. */ tree -build_external_ref (tree id, int fun) +build_external_ref (tree id, int fun, location_t loc) { tree ref; tree decl = lookup_name (id); @@ -1809,7 +1810,7 @@ build_external_ref (tree id, int fun) return error_mark_node; else { - undeclared_variable (id); + undeclared_variable (id, loc); return error_mark_node; } |

