Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Import / if-stmt / Inputs / F.cpp
bloba7062c94ea76f3e1287e01ee9b865fef5f6028eb
1 void f() {
2 if (true)
3 return;
5 if (int j = 3)
6 return;
8 if (int j; true)
9 return;
11 if (true)
12 return;
13 else
14 return;
16 if (true) {
17 return;
18 } else {
19 return;