mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 06:16:05 +00:00

This reverts commit d618f1c3b12effd0c2bdb7d02108d3551f389d3d. This commit wasn't reviewed ahead of time and significant concerns were raised immediately after it landed. According to our developer policy this warrants immediate revert of the commit. https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy Differential Revision: https://reviews.llvm.org/D155509
36 lines
1.4 KiB
Objective-C
36 lines
1.4 KiB
Objective-C
// RUN: %clang_cc1 %s -emit-llvm -fobjc-runtime=macosx-10.8 -triple x86_64-apple-macosx10.8.0 -o - | FileCheck %s
|
|
// RUN: %clang_cc1 %s -emit-llvm -fobjc-runtime=ios-6.0.0 -triple x86_64-apple-ios6.0.0 -o - | FileCheck %s
|
|
// RUN: %clang_cc1 %s -emit-llvm -fobjc-runtime=gnustep-1.7 -triple x86_64-unknown-freebsd -o - | FileCheck %s
|
|
// rdar://10179974
|
|
|
|
@interface I
|
|
// void objc_setProperty_nonatomic(id self, SEL _cmd, id newValue, ptrdiff_t offset);
|
|
// objc_setProperty(..., NO, NO)
|
|
@property (nonatomic, retain) id nonatomicProperty;
|
|
|
|
// void objc_setProperty_nonatomic_copy(id self, SEL _cmd, id newValue, ptrdiff_t offset);
|
|
// objc_setProperty(..., NO, YES)
|
|
@property (nonatomic, copy) id nonatomicPropertyCopy;
|
|
|
|
// void objc_setProperty_atomic(id self, SEL _cmd, id newValue, ptrdiff_t offset);
|
|
// objc_setProperty(..., YES, NO)
|
|
@property (retain) id atomicProperty;
|
|
|
|
// void objc_setProperty_atomic_copy(id self, SEL _cmd, id newValue, ptrdiff_t offset);
|
|
// objc_setProperty(..., YES, YES)
|
|
@property (copy) id atomicPropertyCopy;
|
|
@end
|
|
|
|
@implementation I
|
|
@synthesize nonatomicProperty;
|
|
@synthesize nonatomicPropertyCopy;
|
|
@synthesize atomicProperty;
|
|
@synthesize atomicPropertyCopy;
|
|
@end
|
|
|
|
// CHECK: call void @objc_setProperty_nonatomic
|
|
// CHECK: call void @objc_setProperty_nonatomic_copy
|
|
// CHECK: call void @objc_setProperty_atomic
|
|
// CHECK: call void @objc_setProperty_atomic_copy
|
|
|