view gcc/testsuite/gcc.dg/graphite/pr60785.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-options "-O2 -floop-nest-optimize" } */

static int
aqc(void)
{
  return 1;
}

void
gkd(void)
{
  int wu0;
  static int b1y;
  static int gw2;
  static int *ydw = &gw2;
  static int **m3l = &ydw;
  **m3l = 0;
  for (b1y = 0; b1y < 1; ++b1y)
    {
      int *cpj = &gw2;
      if (*ydw |= aqc())
	{
	  *cpj = 0;
	  *ydw = wu0;
	}
    }
}