aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr87468.c
blob: 2f5cf80bf9f44441b7fbb7f2e2d7dffa7c3bc240 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
a;
b() {
  int c = 1;
  for (; c <= 3;) {
    int d = e() && !0;
    switch (c)
    case 1:
      if (d)
      case 2:
      case 3:
        f();
    if (a)
      c++;
  }
}