bolt/deps/llvm-18.1.8/compiler-rt/test/profile/Inputs/instrprof-gcov-switch1.c

19 lines
158 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
int main(void)
{
int i = 22;
switch (i) {
case 7:
break;
case 22:
i = 7;
break;
case 42:
break;
}
return 0;
}