PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr31605.c
blob12a57ac1ea68a28835c8b8e90c632d8b6c7901e0
1 void put_field (unsigned int start, unsigned int len)
3 int cur_bitshift = ((start + len) % 8) - 8;
4 if (cur_bitshift > -8)
5 exit (0);
8 int
9 main ()
11 put_field (0, 1);
12 abort ();