aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr58343.c
blob: cdd2ce9f4a62c38df53495de1fd0d45eca13a3ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
int a;

int main ()
{
  int b = a; 

  for (a = 1; a > 0; a--)
    ;

 lbl:
  if (b && a)
    goto lbl; 

  return 0;
}