aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr59322.c
blob: 918d6bdb18e31f6d0ad1cc6dd5c37fbec0c6916c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

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;
}