lucetc 0.6.1

Fastly's WebAssembly to native code compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
(module
  (memory 1)
  (func $main (export "main") (local i32)
    (i32.store (i32.const 0) (i32.const 0x0))
    (if (i32.load (i32.const 0))
        (then (i32.store (i32.const 0) (i32.const 0xa)))
        (else (i32.store (i32.const 0) (i32.const 0xb))))
  )
  (start $main)
  (data (i32.const 0) "0000")
)