repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
bolt
/
test
/
Inputs
/
bolt_icf.cpp
blob
593b324a812643c6bc709d272fadb00c90596bb6
1
int
fiz
() {
2
return
fiz
();
3
}
4
5
int
faz
() {
6
return
faz
();
7
}
8
9
int
zip
() {
10
return
0
;
11
}
12
13
int
zap
() {
14
return
0
;
15
}
16
17
int
foo
() {
18
return
zip
();
19
}
20
21
int
bar
() {
22
return
zap
();
23
}
24
25
int
main
() {
26
return
foo
();
27
}