• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: %clang_cc1 -S -emit-llvm -g %s -o - | FileCheck %s
2
3// CHECK: metadata !"p1", metadata !{{.*}}, i32 5, metadata !"", metadata !"", i32 2316, metadata !{{.*}}} ; [ DW_TAG_APPLE_property ]
4@interface I1
5@property int p1;
6@end
7
8@implementation I1
9@synthesize p1;
10@end
11
12void foo(I1 *iptr) {}
13