1# Like Inputs/ctor-setup.s, except it calls `def` instead of `lib_func`, 2# so it pulls in the .o file containing `ctor`. 3 4 .section .text._start,"",@ 5 .globl _start 6_start: 7 .functype _start () -> () 8 end_function 9 10 .section .text.setup,"",@ 11 .globl setup 12setup: 13 .functype setup () -> () 14 call def 15 end_function 16 17 .section .init_array,"",@ 18 .p2align 2 19 .int32 setup 20 21.functype def () -> () 22