Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
8ad6c8696a23f410398fc126929b107404c59a95
/
.
/
test
/
CodeGenObjC
/
property-dbg.m
blob: 42ab6110541d0e062b90b87f0306a5773d5e7ec1 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -S -g -masm-verbose -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
;
}