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