view gcc/testsuite/gcc.dg/torture/pr84746.c @ 131:84e7813d76e9

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

/* { dg-do compile } */

int a, b, c, d, e;
char f, g;

void fn1 ()
{
  while (1)
    {
      if (d)
	goto L1;
      if (e)
	goto L3;
      int q = (c && a) % (f * (d || a)) && b;
      e = q;
      if (b)
	break;
L1:
L2:
      c = f;
L3:
      f = g;
      while (a)
	goto L2;
    }
}