view gcc/testsuite/gcc.c-torture/compile/pr59322.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source


int a, b, d;
short c;

int
foo ()
{
  for (b = 0; b; b = a)
    for (c = 18; c < 10; c++)
      {
	d = c;
	if (d)
	  return 0;
      }
  return 0;
}