aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr97501.c
blob: aedac83962dab7e8c0900e66e3509320c63942bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do compile }
// { dg-options "-O2" }

static int c = 0;

int main() {
  int b = 0;
  if (c) {
  for (;; b--)
    do
      b++;
    while (b);
  }
}