URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [machine/] [sparc/] [shuffle.c] - Rev 326
Go to most recent revision | Compare with Previous | Blame | View Log
/* Cover function to sparclet `shuffle' instruction. This file is in the public domain. */ #ifdef __sparclet__ int shuffle (int a, int b) { int res; __asm__ ("shuffle %1,%2,%0" : "=r" (res) : "r" (a), "r" (b)); return res; } #endif
Go to most recent revision | Compare with Previous | Blame | View Log