* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20160205-1.c
blobea0440f460eb79c68d0f0fda3fbb740d424fe826
1 int a[32];
2 int fn1(int d) {
3 int c = 1;
4 for (int b = 0; b < 32; b++)
5 if (a[b])
6 c = 0;
7 return c;