diff options
Diffstat (limited to 'gcc/doc/invoke.texi')
-rw-r--r-- | gcc/doc/invoke.texi | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index ff463c7..2101192 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -256,8 +256,8 @@ Objective-C and Objective-C++ Dialects}. @item C-only Warning Options @gccoptlist{-Wbad-function-cast -Wmissing-declarations @gol --Wmissing-parameter-type -Wmissing-prototypes @gol --Wnested-externs -Wold-style-definition @gol +-Wmissing-parameter-type -Wmissing-prototypes -Wnested-externs @gol +-Wold-style-declaration -Wold-style-definition @gol -Wstrict-prototypes -Wtraditional -Wtraditional-conversion @gol -Wdeclaration-after-statement -Wpointer-sign} @@ -2885,9 +2885,11 @@ but @samp{x[(void)i,j]} will not. @item An unsigned value is compared against zero with @samp{<} or @samp{>=}. -@item -Storage-class specifiers like @code{static} are not the first things in -a declaration. According to the C Standard, this usage is obsolescent. +@item @r{(C only)} +Storage-class specifiers like @code{static} are not the first things +in a declaration. According to the C Standard, this usage is +obsolescent. This warning can be independently controlled by +@option{-Wold-style-declaration}. @item If @option{-Wall} or @option{-Wunused} is also specified, warn about unused @@ -3214,6 +3216,13 @@ argument types. (An old-style function definition is permitted without a warning if preceded by a declaration which specifies the argument types.) +@item -Wold-style-declaration @r{(C only)} +@opindex Wold-style-declaration +Warn for obsolescent usages, according to the C Standard, in a +declaration. For example, warn if storage-class specifiers like +@code{static} are not the first things in a declaration. This warning +is also enabled by @option{-Wextra}. + @item -Wold-style-definition @r{(C only)} @opindex Wold-style-definition Warn if an old-style function definition is used. A warning is given |