PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr19689.c
blobd950315f237347752e42b62be05051233782488b
1 /* { dg-require-effective-target int32plus } */
2 extern void abort (void);
4 struct
6 int b : 29;
7 } f;
9 void foo (short j)
11 f.b = j;
14 int main()
16 foo (-55);
17 if (f.b != -55)
18 abort ();
19 return 0;