URL
https://opencores.org/ocsvn/hf-risc/hf-risc/trunk
Subversion Repositories hf-risc
[/] [hf-risc/] [trunk/] [tools/] [riscv-gnu-toolchain-master/] [glibc/] [sysdeps/] [riscv/] [crti.S] - Rev 13
Compare with Previous | Blame | View Log
/* Facilitate pthread initialization using init_array. */
#ifdef PREINIT_FUNCTION
#if PREINIT_FUNCTION_WEAK
# error PREINIT_FUNCTION_WEAK is unsupported
#endif
.section .init_array, "aw"
#ifdef __riscv64
.dword PREINIT_FUNCTION
#else
.word PREINIT_FUNCTION
#endif
#endif