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