view gcc/testsuite/gcc.dg/torture/pr79088.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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;
}