[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / property-ref-cast-to-void.m
blob488841452509f987517608eac1f290badca50f00
1 // RUN: %clang_cc1 -no-opaque-pointers -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-opaque-pointers -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