URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.target/] [powerpc/] [20050603-3.c] - Rev 12
Compare with Previous | Blame | View Log
/* { dg-do compile { target "powerpc-*-*" } } */ /* { dg-options "-O2" } */ struct Q { long x:20; long y:4; long z:8; }b; /* This should generate a single rl[w]imi. */ void rotins (unsigned int x) { b.y = (x<<12) | (x>>20); } /* { dg-final { scan-assembler-not "inm" } } */