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]
/
clang
/
test
/
Analysis
/
Inputs
/
ctu-chain.cpp
blob
2314dde1df0d076a6f537a21b8fed88e8edf5a78
1
int
h_chain
(
int
x
) {
2
return
x
*
2
;
3
}
4
5
namespace
chns
{
6
int
chf3
(
int
x
);
7
8
int
chf2
(
int
x
) {
9
return
chf3
(
x
);
10
}
11
12
class
chcls
{
13
public
:
14
int
chf4
(
int
x
);
15
};
16
17
int
chcls
::
chf4
(
int
x
) {
18
return
x
*
3
;
19
}
20
}