OSDN Git Service

gcc/testsuite/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / mips / no-smartmips-ror-1.c
1 /* { dg-do compile } */
2 /* { dg-options "-O -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