Commit d20ae480 by Richard Kenner

(pushdecl): Check new declaration actually conflicts before warning about implicit external vs.

(pushdecl): Check new declaration actually conflicts before warning
about implicit external vs. static declarations.

From-SVN: r12772
parent 2b01c326
......@@ -2007,6 +2007,7 @@ pushdecl (x)
/* Don't test for DECL_EXTERNAL, because grokdeclarator
sets this for all functions. */
&& ! TREE_PUBLIC (x)
&& (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
/* We used to warn also for explicit extern followed by static,
but sometimes you need to do it that way. */
&& IDENTIFIER_IMPLICIT_DECL (name) != 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment