1int main(void)
2{
3 int i = 22;
4
5 switch (i) {
6 case 7:
7 break;
8
9 case 22:
10 i = 7;
11
12 case 42:
13 i = 22;
14 break;
15 }
16
17 return 0;
18}
19

source code of compiler-rt/test/profile/Inputs/instrprof-gcov-switch2.c