21 lines · plain
1# Like Inputs/ctor-start.s, except it calls `lib_func` from a ctor2# instead of from `_start`.3 4.functype lib_func () -> ()5 6 .globl _start7_start:8 .functype _start () -> ()9 end_function10 11 .globl setup12setup:13 .functype setup () -> ()14 call lib_func15 end_function16 17 .section .init_array,"",@18 .p2align 219 .int32 setup20 21