* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr79284.c
blobfe62a939b4ec3caf36695ef48dfad46e2604daec
1 /* PR tree-optimization/79284 */
3 struct S { unsigned a : 1; } b;
4 int c[64];
6 int
7 foo (int x)
8 {
9 char e, f;
10 for (e = 63; e; e--)
11 f = (c[e] && ~0) != b.a;
12 return f;