OSDN Git Service

* expmed.c (store_bit_field_1): Properly truncate the paradoxical
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / mips / smartmips-ror-4.c
1 /* { dg-do compile } */
2 /* { dg-options "-O -msmartmips" } */
3
4 #define S 13
5
6 NOMIPS16 int rotate_right_constant (unsigned a)
7 {
8   return (a >> S) | (a << (32 - S));
9 }
10 /* { dg-final { scan-assembler "\tror\t" } } */