15 lines · plain
1.functype bar () -> ()2 3.globl foo4foo:5 .functype foo () -> ()6 call bar7 end_function8 9# Static constructor inserted here to ensure the object file is not10# being processed as "live". Live object files have their static constructors11# preserved even if no symbol within is used.12.section .init_array,"",@13 .p2align 214 .int32 foo15