Fix warnings occured during profiledboostrap on
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr40204.c
blob149302a8303a061c6fd5ee606fff39d2a28d1d0e
1 /* { dg-require-effective-target int32plus } */
2 /* PR middle-end/40204 */
4 struct S
6 unsigned int a : 4;
7 unsigned int b : 28;
8 } s;
9 char c;
11 void
12 f (void)
14 s.a = (c >> 4) & ~(1 << 4);