1 .functype foo (i32) -> () 2 .functype test0 () -> () 3 4 .section .text.foo,"",@ 5 .weak foo 6 .type foo,@function 7foo: 8 .functype foo (i32) -> () 9 end_function 10 11 .section .text.test0,"",@ 12 .globl test0 13 .type test0,@function 14test0: 15 .functype test0 () -> () 16 i32.const 3 17 call foo 18 end_function 19 20 .section .debug_info,"",@ 21 .int32 foo 22 .int32 test0 23