def err_array_star_in_function_definition : Error<
"variable length array must be bound in function definition">;
def warn_unused_function : Warning<"unused function %0">,
- InGroup<UnusedFunction>, DefaultIgnore;
-
+// FIXME: Temporarily disabled pending PR6321.
+// InGroup<UnusedFunction>, DefaultIgnore;
+ DefaultIgnore;
+
def warn_implicit_function_decl : Warning<
"implicit declaration of function %0">,
InGroup<ImplicitFunctionDeclare>, DefaultIgnore;
// RUN: %clang_cc1 -fsyntax-only -Wunused-function -verify %s
+// XFAIL: *
void foo() {}
static void f2() {}
// FIXME: This will trigger a warning when it should not.
// Update once PR6281 is fixed.
//inline static void f4();
-//void f4() { }
\ No newline at end of file
+//void f4() { }