wasmi 0.36.0

WebAssembly interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(module
  (func (export "")
    (local f64)
    i32.const 0x7FFFFFFF
    local.get 0
    i64.reinterpret_f64
    global.get 0
    local.tee 0
    global.set 0
    i64.store
    unreachable
  )
  (memory 0 10)
  (global (mut f64) f64.const 1.0)
)