repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
debug-info-property2.m
blob
7e0a5e9f954bacb15e8e7fd68e10c5cb057b5405
1
// FIXME: Check IR rather than asm, then triple is not needed.
2
// RUN: %clang_cc1 -triple %itanium_abi_triple -S -debug-info-kind=limited %s -o - | FileCheck %s
3
4
// CHECK: AT_APPLE_property_name
5
@interface C {
6
int _base;
7
}
8
@property int base;
9
@end
10
11
@implementation C
12
@synthesize base = _base;
13
@end
14
15
void foo(C *cptr) {}