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-selector.m
blob
9946f3d0ff4269717fbf0be1ba44499cfaa6f266
1
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
2
3
// CHECK: objc_selector
4
@interface MyClass {
5
}
6
- (id)init;
7
@end
8
9
@implementation MyClass
10
- (id) init
11
{
12
return self;
13
}
14
@end