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
I do understand that really executing Go program would require polyfilling functions that Go needs, but at least it would be nice to be able to compile and run it until it fails with the first such function.
The text was updated successfully, but these errors were encountered:
In my case the SSA "compiler" can't handle blocks and ifs returning a value, e.g.
blocki32
; ...
endifi32
; ...
else
; ...
end
Commenting out the panic leads to either another panic (e.g., "stack underflow") or invalid intermediate code (which might still produce correct result).
I'm trying to execute the simple Go program compiled to wasm:
When trying to execute it using life/main.go I'm getting the following panic:
I do understand that really executing Go program would require polyfilling functions that Go needs, but at least it would be nice to be able to compile and run it until it fails with the first such function.
The text was updated successfully, but these errors were encountered: