URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr40035.c] - Rev 297
Compare with Previous | Blame | View Log
typedef __SIZE_TYPE__ size_t; void *memmove (void *dest, const void *src, size_t count); size_t strlen (const char *s); int foo (char *param, char *val) { if (val) { if (val == param + strlen (param) + 1) val[-1] = '='; else if (val == param + strlen (param) + 2) { val[-2] = '='; memmove (val - 1, val, strlen (val) + 1); val--; } } return 0; }