ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/mips/bswap-1.c

11 lines
290 B
C

/* { dg-options "isa_rev>=2" } */
/* { dg-skip-if "bswap recognition needs expensive optimizations" { *-*-* } { "-O0" "-O1" } { "" } } */
NOMIPS16 unsigned short
foo (unsigned short x)
{
return ((x << 8) & 0xff00) | ((x >> 8) & 0xff);
}
/* { dg-final { scan-assembler "\twsbh\t" } } */