wasmtime-cli 45.0.0

Command-line interface for Wasmtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;; Additional run tests for Winch not covered in the official spec test suite.

(module
  (func (export "br-table-ensure-sp") (result i32)
    (block (result i32)
       (i32.const 0)
    )
    (i32.const 0)
    (i32.const 0)
    (br_table 0)
  )
)

(assert_return (invoke "br-table-ensure-sp") (i32.const 0))