URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [builtins/] [lib/] [memset.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
extern void abort (void); extern int inside_main; __attribute__ ((__noinline__)) void * memset (void *dst, int c, __SIZE_TYPE__ n) { while (n-- != 0) n[(char *) dst] = c; /* Single-byte memsets should be done inline when optimisation is enabled. Do this after the copy in case we're being called to initialize bss. */ #ifdef __OPTIMIZE__ if (inside_main && n < 2) abort (); #endif return dst; }
Go to most recent revision | Compare with Previous | Blame | View Log