URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [mips/] [smartmips-ror-1.c] - Rev 321
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" } } */