wasmi 0.38.0

WebAssembly interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(module ;; different result on main than on Wasmtime
  (func (export "") (param i32) (result i32 i32 i32 i32)
    local.get 0
    local.get 0
    block (param i32 i32)
      local.tee 0
      block (param i32 i32)
        local.get 0
        local.get 0
        br 2 ;; returns
      end
    end
    unreachable
  )
)