URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [mips/] [smartmips-ror-1.c] - Rev 826
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O -msmartmips" } */ NOMIPS16 int rotate_left (unsigned a, unsigned s) { return (a << s) | (a >> (32 - s)); } /* { dg-final { scan-assembler "\tror\t" } } */