* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr52255.c
blobe68ae37dcb6160234be1330efd3422e1da5f8bc3
1 /* PR tree-optimization/52255 */
3 int a, b, c[10], d[10] = { 0, 0 };
5 void
6 foo (void)
8 for (a = 1; a <= 4; a += 1)
9 d[a] = d[1];
10 for (; b; ++b)
11 c[0] |= 1;