YouCompleteMe/cpp/llvm/tools/clang/test/CodeGenObjC/gc-weak-attribute.m
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

29 lines
759 B
Objective-C

// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o - %s | FileCheck %s
// rdar://10073896
@interface I
{
__weak id wObject;
}
@property (readwrite, weak) id representedObject;
@property (readwrite, weak) id wObject;
@property (readwrite, weak) __weak id wRandom;
@property (readwrite, assign) __weak id wAnother;
@end
@implementation I
@synthesize representedObject;
@synthesize wObject;
@synthesize wRandom;
@synthesize wAnother;
@end
// CHECK: call i8* @objc_read_weak
// CHECK: call i8* @objc_assign_weak
// CHECK: call i8* @objc_read_weak
// CHECK: call i8* @objc_assign_weak
// CHECK: call i8* @objc_read_weak
// CHECK: call i8* @objc_assign_weak
// CHECK: call i8* @objc_read_weak
// CHECK: call i8* @objc_assign_weak