diff options
author | Richard Stallman <rms@gnu.org> | 1992-05-26 19:22:26 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-05-26 19:22:26 +0000 |
commit | 53e9d52c516b9aa8bbe3aa49211c985c97c5a4ce (patch) | |
tree | cc9098ab29c19753be82bbdd95239695652c5cdd /gcc/c-common.c | |
parent | 552bc76f1730dc061ac65c9065ec3cd1aa9144f5 (diff) | |
download | gcc-53e9d52c516b9aa8bbe3aa49211c985c97c5a4ce.zip gcc-53e9d52c516b9aa8bbe3aa49211c985c97c5a4ce.tar.gz gcc-53e9d52c516b9aa8bbe3aa49211c985c97c5a4ce.tar.bz2 |
entered into RCS
From-SVN: r1090
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 6263323..8dc92d8 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; |