ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/powerpc/rotmask.c

9 lines
206 B
C
Raw Permalink Normal View History

2024-04-01 15:19:46 +00:00
/* { dg-require-effective-target lp64 } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-not "rotldi" } } */
unsigned long f (unsigned long x)
{
return ((x << 1) | (x >> 63)) & 0xffffffff;
}