[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenObjC / objc2-no-write-barrier.m
blob16593f128d785ffdc68a96493368438dd128a2ea
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
2 // RUN: not grep 'objc_assign' %t
3 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
4 // RUN: not grep 'objc_assign' %t
6 typedef struct {
7     int ival;
8     id submenu;
9 } XCBinderContextMenuItem;
11 id actionMenuForDataNode(void) {
12     XCBinderContextMenuItem menusToCreate[]  = {
13         {1, 0}
14     };
15     return 0;
18 XCBinderContextMenuItem GmenusToCreate[]  = {
19         {1, 0}