You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Calling `investigate_problem()` within host.wasm
- Before exec....
public static in host: 0x1007b4
- After exec
# Calling `investigate_problem()` in mod1.wasm from host.wasm
- Before exec....
public static in host: 0x0
- After exec
section in investigate_problem:
Host Wasm⇐ ⇛ mod1.wasm
1050548 = 0x1007b4
As it can be seen in the diff (line 152 on the left, 145 on the right), the address is hard coded in the wasm. (Not a runtime problem with __stack_pointer, etc.)
The solution should be on the compiler & wasm modification side
The text was updated successfully, but these errors were encountered:
section in

investigate_problem
:Host Wasm⇐ ⇛ mod1.wasm
1050548 = 0x1007b4
As it can be seen in the diff (line 152 on the left, 145 on the right), the address is hard coded in the wasm. (Not a runtime problem with
__stack_pointer
, etc.)The solution should be on the compiler & wasm modification side
The text was updated successfully, but these errors were encountered: