view gcc/testsuite/gcc.dg/torture/pr80539.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
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;
}