PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr71700.c
blob80afd3809c3abd24135fb36b757ace9f41ba3112
1 struct S
3 signed f0 : 16;
4 unsigned f1 : 1;
5 };
7 int b;
8 static struct S c[] = {{-1, 0}, {-1, 0}};
9 struct S d;
11 int
12 main ()
14 struct S e = c[0];
15 d = e;
16 if (d.f1 != 0)
17 __builtin_abort ();
18 return 0;