Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Analysis / Inputs / ctu-chain.cpp
blob2314dde1df0d076a6f537a21b8fed88e8edf5a78
1 int h_chain(int x) {
2 return x * 2;
5 namespace chns {
6 int chf3(int x);
8 int chf2(int x) {
9 return chf3(x);
12 class chcls {
13 public:
14 int chf4(int x);
17 int chcls::chf4(int x) {
18 return x * 3;