PR tree-optimization/70602
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr70602.c
blobc6628b037b2e8acc278f5dad9d6fcf92cf53c0f8
1 /* PR tree-optimization/70602 */
3 struct __attribute__((packed)) S
5 int s : 1;
6 int t : 20;
7 };
9 int a, b, c;
11 int
12 main ()
14 for (; a < 1; a++)
16 struct S e[] = { {0, 9}, {0, 9}, {0, 9}, {0, 0}, {0, 9}, {0, 9}, {0, 9},
17 {0, 0}, {0, 9}, {0, 9}, {0, 9}, {0, 0}, {0, 9}, {0, 9},
18 {0, 9}, {0, 0}, {0, 9}, {0, 9}, {0, 9}, {0, 0}, {0, 9} };
19 b = b || e[0].s;
20 c = e[0].t;
22 return 0;