[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / Sema / no-warn-missing-prototype.c
blob6059b6aa0f14693c98a0f840d473d956cc184168
1 // RUN: %clang_cc1 -fsyntax-only -Wmissing-prototypes -x c -ffreestanding -verify %s
2 // RUN: %clang_cc1 -fsyntax-only -Wmissing-prototypes -x c++ -ffreestanding -verify %s
3 // expected-no-diagnostics
4 int main() {
5 return 0;
8 int efi_main() {
9 return 0;