aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr79088.c
blob: 7c78f15e3da4d6041209148ff5a0b124071312ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-do run } */

int a, b, c, d, e = 1;

int main ()
{
  int f;
  if (a)
    goto L;
  for (f = 0; f < e; e++)
    {
L:
      if (d)
	continue;
      if (c)
	goto L;
      for (a = 0; a < 6; a++)
	for (f = 0; f < 3; f++)
	  while (b)
	    c++;
    }
  return 0;
}