aboutsummaryrefslogtreecommitdiff
path: root/test/profile/Inputs/instrprof-gcov-switch2.c
blob: 14e8a84de507979edcfdacca25e33bbbad28da79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
int main(void)
{
  int i = 22;

  switch (i) {
    case 7:
      break;

    case 22:
      i = 7;

    case 42:
      i = 22;
      break;
  }

  return 0;
}