From: Richard Kenner Date: Wed, 26 Apr 1995 21:56:19 +0000 (-0400) Subject: (expand_function_end): Warn about unused parms if both -Wunused and -W. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=db8717d93b031ae41252ef8edc3a4a958233fa94;p=gcc.git (expand_function_end): Warn about unused parms if both -Wunused and -W. From-SVN: r9489 --- diff --git a/gcc/function.c b/gcc/function.c index 6a936ff22b6..83a69627662 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -5234,18 +5234,16 @@ expand_function_end (filename, line, end_bindings) emit_insns_before (seq, tail_recursion_reentry); } -#if 0 /* I think unused parms are legitimate enough. */ - /* Warn about unused parms. */ - if (warn_unused) + /* Warn about unused parms if extra warnings were specified. */ + if (warn_unused && extra_warnings) { - rtx decl; + tree decl; for (decl = DECL_ARGUMENTS (current_function_decl); decl; decl = TREE_CHAIN (decl)) - if (! TREE_USED (decl) && TREE_CODE (decl) == VAR_DECL) + if (! TREE_USED (decl) && TREE_CODE (decl) == PARM_DECL) warning_with_decl (decl, "unused parameter `%s'"); } -#endif /* Delete handlers for nonlocal gotos if nothing uses them. */ if (nonlocal_goto_handler_slot != 0 && !current_function_has_nonlocal_label)