view gcc/testsuite/gcc.dg/graphite/pr83385.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 run } */
/* { dg-options "-O1 -floop-nest-optimize" } */

int xc, n1 = 0;
int bx[2];

int
main (void)
{
  int aj = 1;
  int cs;

  for (cs = aj; cs >= 0; --cs)
    {
      int sq;

      for (sq = 0; sq < 2; ++sq)
	{
	  if (aj != 0)
	    --n1;

	  for (xc = 0; xc < 2; ++xc)
	    bx[xc] = 0;
	}

      --aj;
    }

  if (n1 != -2)
    __builtin_abort ();
  return 0;
}