aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenObjC/property-dbg.m
blob: f15213131ccc00e5c7d504656d8b0342c111ea73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// FIXME: Check IR rather than asm, then triple is not needed.
// RUN: %clang_cc1 -triple %itanium_abi_triple -S -debug-info-kind=limited -x objective-c < %s | grep DW_AT_name
@interface Foo {
  int i;
}
@property int i;
@end

@implementation Foo
@synthesize i;
@end

int bar(Foo *f) {
  int i = 1;
  f.i = 2;
  i = f.i;
  return i;
}