view gcc/testsuite/gcc.dg/graphite/pr93964.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

/* { dg-do compile }  */
/* { dg-options "-O -floop-nest-optimize" } */

int *
eo (void);

void
g4 (int *nt)
{
  int dh, t2 = (__INTPTR_TYPE__)eo ();

  for (dh = 0; dh < 2; ++dh)
    {
      int m7;

      for (m7 = 0; m7 < t2; ++m7)
        nt[m7] = 0;
    }
}