[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenObjC / property-ref-cast-to-void.m
blobe304304439b20c33ae9c23e60c607e3bc9589fdc
1 // RUN: %clang_cc1 -no-enable-noundef-analysis -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -no-enable-noundef-analysis -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck %s
4 // rdar: // 8399655
5 @interface TestClass
6 @property (readonly) int myProperty;
7 - (int)myProperty;
8 - (double)myGetter;
9 @end
11 void FUNC (void) {
12     TestClass *obj;
13     (void)obj.myProperty; 
14     (void)obj.myGetter; 
17 // CHECK: call i32 bitcast
18 // CHECK: call double bitcast