aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr60115.c
blob: cf7f45dfb06a26128c267881d20d15027c3291b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do run } */

int a, b[2];

int
main ()
{
lbl:
  for (; a; a--)
    if (b[10000])
      goto lbl;

  return 0;
}