PR c/63877
* c-decl.c (start_function): Disable -Wmissing-declarations warning
for inline functions.
* gcc.dg/pr63877.c: New test.
From-SVN: r218039
+2014-11-25 Marek Polacek <polacek@redhat.com>
+
+ PR c/63877
+ * c-decl.c (start_function): Disable -Wmissing-declarations warning
+ for inline functions.
+
2014-11-21 Jakub Jelinek <jakub@redhat.com>
PR target/63764
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);
+2014-11-25 Marek Polacek <polacek@redhat.com>
+
+ PR c/63877
+ * gcc.dg/pr63877.c: New test.
+
2014-11-25 Markus Trippelsdorf <markus@trippelsdorf.de>
PR ipa/64059
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-Wmissing-declarations" } */
+
+inline int foo (void) { return 42; } /* { dg-bogus "no previous declaration" } */
+extern int foo (void);