(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
mips/
no-smartmips-ror-1.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-mno-smartmips -march=mips32" } */
       3  
       4  NOMIPS16 int rotate_left (unsigned a, unsigned s)
       5  {
       6    return (a << s) | (a >> (32 - s));
       7  }
       8  /* { dg-final { scan-assembler-not "\tror\t" } } */
       9