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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
debug-info-linkagename.m
blob
94d438a03e2e6ec52db84873bc70e2365fb4032c
1
// RUN: %clang_cc1 -debug-info-kind=limited -S -o %t %s
2
// RUN: not grep "001-[F bar" %t
3
// Linkage name should not use 001 prefix in debug info.
4
5
@interface F
6
-(int) bar;
7
@end
8
9
@implementation F
10
-(int) bar {
11
return 42;
12
}
13
@end
14
15
extern int f(F *fn) {
16
return [fn bar];
17
}
18