aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/mips/smartmips-ror-4.c
blob: b8b82944540566480eef1b2510e61822d2f5dbd2 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-O -msmartmips" } */

#define S 13

NOMIPS16 int rotate_right_constant (unsigned a)
{
  return (a >> S) | (a << (32 - S));
}
/* { dg-final { scan-assembler "\tror\t" } } */