summaryrefslogtreecommitdiff
path: root/test/profile/Inputs/instrprof-gcov-switch1.c
blob: 25544323c555615841cebdf58bf62d7b399c6158 (plain)
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;
      break;

    case 42:
      break;
  }

  return 0;
}