xref: /llvm-project/compiler-rt/test/profile/Inputs/instrprof-gcov-multiple-bbs-single-line.c (revision d47bde0d7a8bff7ef1526cc13b05b1d633550e32)

main(void)1 int main(void)
2 {
3   int var;
4 
5   int a = 1;
6   if (a) {
7     var++;
8   }
9 
10   if (a) {}
11 
12   int b = 0;
13   if (b) {
14     var++;
15   }
16 
17   if (b) {}
18 
19   return 0;
20 }
21