From b286be940a8231b35ed111f6044b2bf7da471d07 Mon Sep 17 00:00:00 2001 From: Marek Polacek Date: Tue, 25 Nov 2014 08:28:45 +0000 Subject: re PR c/63877 (- -Wmissing-declarations produces false alarms for C99 inline functions) PR c/63877 * c-decl.c (start_function): Disable -Wmissing-declarations warning for inline functions. * gcc.dg/pr63877.c: New test. From-SVN: r218039 --- gcc/c/c-decl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gcc/c/c-decl.c') diff --git a/gcc/c/c-decl.c b/gcc/c/c-decl.c index 9288e2c..6413e6f 100644 --- a/gcc/c/c-decl.c +++ b/gcc/c/c-decl.c @@ -8353,7 +8353,8 @@ start_function (struct c_declspecs *declspecs, struct c_declarator *declarator, else if (warn_missing_declarations && TREE_PUBLIC (decl1) && old_decl == 0 - && !MAIN_NAME_P (DECL_NAME (decl1))) + && !MAIN_NAME_P (DECL_NAME (decl1)) + && !DECL_DECLARED_INLINE_P (decl1)) warning_at (loc, OPT_Wmissing_declarations, "no previous declaration for %qD", decl1); -- cgit v1.1