URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [powerpc/] [bswap32.c] - Rev 322
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile { target { powerpc*-*-* } } } */ /* { dg-options "-O2" } */ /* { dg-final { scan-assembler "lwbrx" } } */ /* { dg-final { scan-assembler "stwbrx" } } */ unsigned int ui; unsigned int load_bswap32 (unsigned int *p) { return __builtin_bswap32 (*p); } void store_bswap32 (unsigned int a) { ui = __builtin_bswap32 (a); }
Go to most recent revision | Compare with Previous | Blame | View Log