lucetc 0.6.1

Fastly's WebAssembly to native code compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
(module
  (memory 1)
  (func $main (export "main") (local i32)
      (set_local 0 (i32.sub (i32.const 4) (i32.const 4)))
      (if
          (get_local 0)
          (then unreachable)
          (else (drop (i32.mul (i32.const 6) (get_local 0))))
       )
  )
  (start $main)
  (data (i32.const 0) "abcdefgh")
)