PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr78436.c
blobea03d3fa666fd8a89204cb9e42959582d467bfee
1 /* PR tree-optimization/78436 */
3 struct S
5 long int a : 24;
6 signed char b : 8;
7 } s;
9 __attribute__((noinline, noclone)) void
10 foo ()
12 s.b = 0;
13 s.a = -1193165L;
16 int
17 main ()
19 foo ();
20 if (s.b != 0)
21 __builtin_abort ();
22 return 0;