1# Like Inputs/ctor-start.s, except it calls `lib_func` from a ctor 2# instead of from `_start`. 3 4 .globl _start 5_start: 6 .functype _start () -> () 7 end_function 8 9 .globl setup 10setup: 11 .functype setup () -> () 12 call lib_func 13 end_function 14 15 .section .init_array,"",@ 16 .p2align 2 17 .int32 setup 18 19 .functype lib_func () -> () 20