view gcc/testsuite/gcc.dg/tree-ssa/pr68021.c @ 152:2b5abeee2509

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

/* { dg-do compile } */
/* { dg-options "-O3" } */

char a;
void fn1 (char *p1, int p2, int p3)
{
  int i, x;
  for (i = 0; i < 10; i++)
    {
      for (x = 0; x < p3; x++)
	{
	  *p1 = a;
	  p1--;
	}
      p1 += p2;
    }
}