blob: 4cd76c1ca6dc395e0a1ca3ffda7552b9d45c857d [file] [log] [blame]
Devang Patel8c6f9c42011-09-19 18:54:16 +00001// RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s
2
3// CHECK: AT_APPLE_property_name
4@interface C {
5 int _base;
6}
7@property int base;
8@end
9
10@implementation C
11@synthesize base = _base;
12@end
13
14void foo(C *cptr) {}