PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930126-1.c
blobff08e7d6131c029cc39ef5361c37d3765149ac6e
1 struct s {
2 unsigned long long a:8, b:32;
3 };
5 struct s
6 f(struct s x)
8 x.b = 0xcdef1234;
9 return x;
12 main()
14 static struct s i;
15 i.a = 12;
16 i = f(i);
17 if (i.a != 12 || i.b != 0xcdef1234)
18 abort();
19 exit(0);