[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenObjC / externally-initialized-selectors.m
blob6ec97d4322e0a725076135e7103af6e0a08ebe9d
1 // RUN: %clang_cc1 -fobjc-runtime=macosx-fragile-10.5 -o - -emit-llvm %s | FileCheck -check-prefix=FRAGILE %s
2 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-10.14 -o - -emit-llvm %s | FileCheck -check-prefix=NONFRAGILE %s
4 // NONFRAGILE: @OBJC_SELECTOR_REFERENCES_ = internal externally_initialized global
5 // FRAGILE: @OBJC_SELECTOR_REFERENCES_ = private externally_initialized global
7 void test(id x) {
8   [x doSomething];