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
Given the following Wasm module, wasmparser reports the if's end as popping 2 values and pushing 2 values, but I think it should be popping and pushing 1 value, no?
(module
(func (export"f") (parami64i32) (resulti64)
(local.get0)
(local.get1)
;; If with no else. Same number of params and results.
(if (parami64) (resulti64)
(then
(drop)
(i64.const-1)
)
)
)
)