From d847e6a7b522b519a90cce02c19e17b4abbedeb8 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Fri, 11 Sep 1992 23:22:07 +0000 Subject: [PATCH] (duplicate_decls): For file-scope redefinitions, error message distinguishes previous definitions from mere decls. From-SVN: r2108 --- gcc/c-decl.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 59d0c52491a5..d0f0c1c8b3a0 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -1408,7 +1408,10 @@ duplicate_decls (newdecl, olddecl) { error_with_decl (newdecl, errmsg); error_with_decl (olddecl, - "`%s' previously declared here"); + ((DECL_INITIAL (olddecl) + && current_binding_level == global_binding_level) + ? "`%s' previously defined here" + : "`%s' previously declared here")); } else if (TREE_CODE (olddecl) == FUNCTION_DECL && DECL_INITIAL (olddecl) != 0 -- 2.43.5