Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / profile / Inputs / instrprof-gcov-multiple-bbs-single-line.c
bloba2e187b5cb61f8c93d4beae7a1318c9a39c85d82
1 int main(void)
3 int var;
5 int a = 1;
6 if (a) {
7 var++;
10 if (a) {}
12 int b = 0;
13 if (b) {
14 var++;
17 if (b) {}
19 return 0;