Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.target / powerpc / 20050603-3.c
blob35be6602155e3b71b36438c13c06e9d688669d80
1 /* { dg-do compile { target "powerpc-*-*" } } */
2 /* { dg-options "-O2" } */
3 struct Q
5 long x:20;
6 long y:4;
7 long z:8;
8 }b;
9 /* This should generate a single rl[w]imi. */
10 void rotins (unsigned int x)
12 b.y = (x<<12) | (x>>20);
15 /* { dg-final { scan-assembler-not "inm" } } */