f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
17 lines
326 B
Objective-C
17 lines
326 B
Objective-C
// RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s
|
|
|
|
// CHECK: AT_APPLE_property_name
|
|
// CHECK-NOT: AT_APPLE_property_getter
|
|
// CHECK-NOT: AT_APPLE_property_setter
|
|
// CHECK: AT_APPLE_property_attribute
|
|
// CHECK: AT_APPLE_property
|
|
|
|
|
|
@interface I1
|
|
@property int p1;
|
|
@end
|
|
|
|
@implementation I1
|
|
@end
|
|
|
|
void foo(I1 *ptr) {}
|