PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr70127.c
bloba0bf3c02830ff37a39262065845edb20430a0a03
1 /* PR tree-optimization/70127 */
3 struct S { int f; signed int g : 2; } a[1], c = {5, 1}, d;
4 short b;
6 __attribute__((noinline, noclone)) void
7 foo (int x)
9 if (x != 1)
10 __builtin_abort ();
13 int
14 main ()
16 while (b++ <= 0)
18 struct S e = {1, 1};
19 d = e = a[0] = c;
21 foo (a[0].g);
22 return 0;