view gcc/testsuite/gcc.dg/torture/pr80539.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-do compile } */

signed char a, b;
void fn1()
{
  signed char c, e;
  short d;
  if (0) {
      for (; d;) {
l1:
	  for (c = 7; a; c++)
	    ;
	  e = 6;
	  for (; b; e++)
	    ;
      }
      c -= e;
  }
  if (d == 7)
    goto l1;
  a = c;
}