• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s
2// Radar 9468526
3@interface I {
4  int _p1;
5}
6@property int p1;
7@end
8
9@implementation I
10@synthesize p1 = _p1;
11@end
12
13int main() {
14  I *myi;
15  myi.p1 = 2;
16  return 0;
17}
18
19// FIXME: Make this test ir files.
20// CHECK:       .loc    2 6 0
21