URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20061005-1.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR target/28924 */ char c; void testc (void) { (void) __sync_fetch_and_add (&c, -1); } short s; void tests (void) { (void) __sync_fetch_and_add (&s, -1); } void testc2 (void) { (void) __sync_val_compare_and_swap (&c, -1, -3); }
Go to most recent revision | Compare with Previous | Blame | View Log