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/] [bfill.c] - Rev 849
Go to most recent revision | Compare with Previous | Blame | View Log
extern int inside_main; __attribute__ ((__noinline__)) void bfill (void *s, __SIZE_TYPE__ n, int ch) { char *p; for (p = s; n-- > 0; p++) *p = ch; #ifdef __OPTIMIZE__ if (inside_main) abort (); #endif }
Go to most recent revision | Compare with Previous | Blame | View Log