xref: /llvm-project/compiler-rt/test/profile/Inputs/instrprof-gcov-switch2.c (revision ae43a27f9ce8794a6a543f26cbff49d88fe9c9f6)

main(void)1 int 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