From: Richard Stallman Date: Tue, 26 May 1992 19:22:26 +0000 (+0000) Subject: entered into RCS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=53e9d52c516b9aa8bbe3aa49211c985c97c5a4ce;p=gcc.git entered into RCS From-SVN: r1090 --- diff --git a/gcc/c-common.c b/gcc/c-common.c index 6263323802d..8dc92d86f80 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -54,7 +54,7 @@ declare_function_name () char_array_type_node); TREE_STATIC (decl) = 1; TREE_READONLY (decl) = 1; - TREE_NO_UNUSED_WARNING (decl) = 1; + TREE_USED (decl) = 1; DECL_IGNORED_P (decl) = 1; init = build_string (strlen (name) + 1, name); TREE_TYPE (init) = char_array_type_node; @@ -66,7 +66,7 @@ declare_function_name () char_array_type_node); TREE_STATIC (decl) = 1; TREE_READONLY (decl) = 1; - TREE_NO_UNUSED_WARNING (decl) = 1; + TREE_USED (decl) = 1; DECL_IGNORED_P (decl) = 1; init = build_string (strlen (printable_name) + 1, printable_name); TREE_TYPE (init) = char_array_type_node;