view gcc/testsuite/gcc.dg/torture/pr84427.c @ 152:2b5abeee2509

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

/* { dg-do compile } */

short a, d, e;
unsigned char b;
int c, f;
char g, h;
void fn2(int, int);
void fn1() { fn2(e, a); }
void fn2(int p1, int p2)
{
l1:
  b = a;
  for (; h; h--)
    if (p1)
      g = p2 * c;
    else
      {
	c = d;
	if (f)
	  goto l1;
      }
}