You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
289 B

.weak weakFn
weakFn:
.functype weakFn () -> (i32)
i32.const 1
end_function
.globl exportWeak1
exportWeak1:
.functype exportWeak1 () -> (i32)
i32.const weakFn
end_function
.section .data.weakGlobal,"",@
.weak weakGlobal
weakGlobal:
.int32 1
.size weakGlobal, 4