URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [tm/] [20100615-2.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-fgnu-tm -O" } */ __attribute__((transaction_safe)) void Info_RemoveKey (char *s) { char *o = 0; while (1) { s++; while (*s) { if (!*s) return; *o++ = *s++; } *o = 0; } }