view gcc/testsuite/gcc.dg/graphite/pr83963.c @ 158:494b0b89df80 default tip

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

/* { dg-do compile } */
/* { dg-options "-O -floop-nest-optimize -fno-tree-loop-im" } */

int mg, et;

void
s5 (int is)
{
  if (is == 0)
    {
g6:
      ++is;
    }

  while (mg < 1)
    {
      while (et < 1)
	{
	  if (is == 0)
	    return;

	  ++et;
	}

      while (mg < 1)
	++mg;
    }

  goto g6;
}