x86: Tune Skylake, Cannonlake and Icelake as Haswell
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr70602.c
blob4a931fc4b74326e30181d0a9b7d352a4ee20e238
1 /* PR tree-optimization/70602 */
2 /* { dg-require-effective-target int32plus } */
4 struct __attribute__((packed)) S
6 int s : 1;
7 int t : 20;
8 };
10 int a, b, c;
12 int
13 main ()
15 for (; a < 1; a++)
17 struct S e[] = { {0, 9}, {0, 9}, {0, 9}, {0, 0}, {0, 9}, {0, 9}, {0, 9},
18 {0, 0}, {0, 9}, {0, 9}, {0, 9}, {0, 0}, {0, 9}, {0, 9},
19 {0, 9}, {0, 0}, {0, 9}, {0, 9}, {0, 9}, {0, 0}, {0, 9} };
20 b = b || e[0].s;
21 c = e[0].t;
23 return 0;