The call to the method external_decl::process_decl() is preceded by some processing if there is also an initializer. Part of this processing is a check if the declaration has not external linkage, otherwise an error is issued and the 'extern' is removed from the declaration. While also valid for C99 for-loop initializer, this is less desirable because in this context, 'extern' is invalid anyway and removing it from the declaration make it imposible to issue a diagnostic about it. Fix this by moving the 'extern with initializer' check into the default_process_decl() method, where it is always pertinent and so allowing process_for_loop_decl() to make its own diagnostic. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- parse.c | 8 ++++---- validation/c99-for-loop-decl.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/parse.c b/parse.c index c3c877b10..e33e8b32f 100644 --- a/parse.c +++ b/parse.c @@ -2899,10 +2899,6 @@ static struct token *external_decl(struct token *token, process_decl_t process_d int has_init = 0; if (!is_typedef && match_op(token, '=')) { has_init = 1; - if (decl->ctype.modifiers & MOD_EXTERN) { - warning(decl->pos, "symbol with external linkage has initializer"); - decl->ctype.modifiers &= ~MOD_EXTERN; - } token = initializer(&decl->initializer, token->next); } if (!is_typedef) @@ -2949,6 +2945,10 @@ static struct token *external_decl(struct token *token, process_decl_t process_d static void default_process_decl(struct symbol_list **list, struct symbol *decl, int has_init) { + if (has_init && decl->ctype.modifiers & MOD_EXTERN) { + warning(decl->pos, "symbol with external linkage has initializer"); + decl->ctype.modifiers &= ~MOD_EXTERN; + } if (!(decl->ctype.modifiers & (MOD_EXTERN | MOD_INLINE))) { add_symbol(list, decl); fn_local_symbol(decl); diff --git a/validation/c99-for-loop-decl.c b/validation/c99-for-loop-decl.c index e813b0ae3..d382d3c9b 100644 --- a/validation/c99-for-loop-decl.c +++ b/validation/c99-for-loop-decl.c @@ -32,7 +32,7 @@ static int c99(void) * check-name: C99 for-loop declarations * * check-error-start -c99-for-loop-decl.c:22:27: warning: symbol with external linkage has initializer +c99-for-loop-decl.c:22:27: error: non-local var 'l' in for-loop initializer c99-for-loop-decl.c:24:27: error: non-local var 'm' in for-loop initializer c99-for-loop-decl.c:26:27: error: non-local var 'n' in for-loop initializer c99-for-loop-decl.c:9:16: error: undefined identifier 'i' -- 2.11.1 -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html