URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [mips/] [fix-r10000-12.c] - Rev 697
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 -mfix-r10000" } */ /* { dg-final { scan-assembler-times "\tbeql\t" 3 } } */ /* { dg-message "note: '__sync_nand_and_fetch' changed semantics in GCC 4.4" "" { target *-*-* } 0 } */ NOMIPS16 int f1 (int *z) { return __sync_nand_and_fetch (z, 42); } NOMIPS16 short f2 (short *z) { return __sync_nand_and_fetch (z, 42); } NOMIPS16 char f3 (char *z) { return __sync_nand_and_fetch (z, 42); }
Go to most recent revision | Compare with Previous | Blame | View Log