1int 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

source code of compiler-rt/test/profile/Inputs/instrprof-gcov-multiple-bbs-single-line.c