aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr53409.c
blob: 1bf478ee54939620144e32a1f634658f55909c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* PR tree-optimization/53409 */

int a, c, d, e, f;
int b[0];

int
main ()
{
  if (f)
    e = 0;
  int g = d;
  for (c = 0; c <= 1; c++)
    {
      for (a = 0; a <= 1; a = (char) a + 1)
	b[c] = g;
      a = 0;
    }
  return 0;
}