summaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-24 15:17:26 +0000
committerpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-24 15:17:26 +0000
commit56421f5281f7aefa99319f6c82ede6c235c61373 (patch)
tree869d547d6a351decc78db9dd25b6fc48dbd968be /gcc/function.c
parent704a64baf9ad0bb1a2f313f44d4875e08e5e9e7c (diff)
downloadgcc-56421f5281f7aefa99319f6c82ede6c235c61373.tar.gz
2003-01-24 Phil Edwards <pme@gcc.gnu.org>
Rename -W to -Wextra. * c-decl.c: Update comments. * c-typeck.c: Likewise. * flags.h: Likewise. * function.c: Likewise. * stmt.c: Likewise. * toplev.c: Update comments. (W_options): Add 'extra'. (display_help): Remove '-W'. (decode_W_option): Special warn_uninitialized treatment in the case of -Wextra. * doc/invoke.texi: Update with new entries. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61696 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/function.c b/gcc/function.c
index d40801c4078..c240788e30a 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -6795,9 +6795,10 @@ expand_function_end (filename, line, end_bindings)
}
/* Warn about unused parms if extra warnings were specified. */
- /* Either ``-W -Wunused'' or ``-Wunused-parameter'' enables this
+ /* Either ``-Wextra -Wunused'' or ``-Wunused-parameter'' enables this
warning. WARN_UNUSED_PARAMETER is negative when set by
- -Wunused. */
+ -Wunused. Note that -Wall implies -Wunused, so ``-Wall -Wextra'' will
+ also give these warnings. */
if (warn_unused_parameter > 0
|| (warn_unused_parameter < 0 && extra_warnings))
{