diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-31 17:21:27 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-31 17:21:27 +0000 |
commit | f23d7b7fff4e60a524860acc90b9245157edb217 (patch) | |
tree | 37c2094176ebe279ec60f8c89c341f5502370a4b /gcc/c-decl.c | |
parent | 5e96efb691aed8e24b7ee43da53a599b48490072 (diff) | |
download | gcc-f23d7b7fff4e60a524860acc90b9245157edb217.tar.gz |
* c-decl.c (diagnose_mismatched_decls): Give error for external
redeclaration of identifier declared with no linkage, not just
warning with -Wtraditional. Do not check DECL_CONTEXT to give
error for redeclaration with no linkage.
testsuite:
* gcc.dg/redecl-2.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85386 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index b14d331cadc..27860b4bd29 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -1325,7 +1325,14 @@ diagnose_mismatched_decls (tree newdecl, tree olddecl, { if (DECL_EXTERNAL (newdecl)) { - if (warn_traditional) + if (!DECL_FILE_SCOPE_P (olddecl)) + { + error ("%Jextern declaration of %qD follows " + "declaration with no linkage", newdecl, newdecl); + locate_old_decl (olddecl, error); + return false; + } + else if (warn_traditional) { warning ("%Jnon-static declaration of '%D' follows " "static declaration", newdecl, newdecl); @@ -1347,13 +1354,10 @@ diagnose_mismatched_decls (tree newdecl, tree olddecl, } /* Two objects with the same name declared at the same block scope must both be external references (6.7p3). */ - else if (!DECL_FILE_SCOPE_P (newdecl) - && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl) - && (!DECL_EXTERNAL (newdecl) || !DECL_EXTERNAL (olddecl))) + else if (!DECL_FILE_SCOPE_P (newdecl)) { if (DECL_EXTERNAL (newdecl)) - error ("%Jextern declaration of '%D' follows " - "declaration with no linkage", newdecl, newdecl); + abort (); else if (DECL_EXTERNAL (olddecl)) error ("%Jdeclaration of '%D' with no linkage follows " "extern declaration", newdecl, newdecl); |