From: Richard Stallman Date: Sun, 8 Aug 1993 08:33:48 +0000 (+0000) Subject: (declare_function_name): Set DECL_EXTERNAL in the decls. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=34d6bae3ee52ad4f91db7cee05fe3e244f3098f0;p=gcc.git (declare_function_name): Set DECL_EXTERNAL in the decls. From-SVN: r5106 --- diff --git a/gcc/c-common.c b/gcc/c-common.c index b5a1cdd27b5..e5a84d2be7b 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -70,6 +70,7 @@ declare_function_name () DECL_SOURCE_LINE (decl) = 0; DECL_IN_SYSTEM_HEADER (decl) = 1; DECL_IGNORED_P (decl) = 1; + DECL_EXTERNAL (decl) = 1; init = build_string (len, name); TREE_TYPE (init) = type; DECL_INITIAL (decl) = init; @@ -89,6 +90,7 @@ declare_function_name () DECL_SOURCE_LINE (decl) = 0; DECL_IN_SYSTEM_HEADER (decl) = 1; DECL_IGNORED_P (decl) = 1; + DECL_EXTERNAL (decl) = 1; init = build_string (len, printable_name); TREE_TYPE (init) = type; DECL_INITIAL (decl) = init;