URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [mips/] [smartmips-ror-4.c] - Rev 697
Go to most recent revision | Compare with Previous | Blame | View Log
/* { 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" } } */
Go to most recent revision | Compare with Previous | Blame | View Log