Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.target
/
mips
/
no-smartmips-ror-1.c
blob: 419d086b8afc1213bd597f9c88f0d5564dd8a22e [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-mno-smartmips -march=mips32" } */
NOMIPS16
int
rotate_left
(
unsigned
a
,
unsigned
s
)
{
return
(
a
<<
s
)
|
(
a
>>
(
32
-
s
));
}
/* { dg-final { scan-assembler-not "\tror\t" } } */