diff options
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index d4b3a2a..0521aa7 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -6049,14 +6049,11 @@ start_function (declspecs, declarator, prefix_attributes, attributes) } /* It is intentional that this message does not mention the third - argument, which is warned for only pedantically, because it's - blessed by mention in an appendix of the standard. */ + argument because it's only mentioned in an appendix of the + standard. */ if (argct > 0 && (argct < 2 || argct > 3)) pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments"); - if (argct == 3 && pedantic) - pedwarn_with_decl (decl1, "third argument of `%s' is deprecated"); - if (! TREE_PUBLIC (decl1)) pedwarn_with_decl (decl1, "`%s' is normally a non-static function"); } |