PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr58570.c
blob28b6efe8f9503ac5d115ebc976f48e1049fe0379
1 /* { dg-require-effective-target int32plus } */
2 #pragma pack(1)
3 struct S
5 int f0:15;
6 int f1:29;
7 };
9 int e = 1, i;
10 static struct S d[6];
12 int
13 main (void)
15 if (e)
17 d[i].f0 = 1;
18 d[i].f1 = 1;
20 if (d[0].f1 != 1)
21 __builtin_abort ();
22 return 0;