blob: 44848b314de0dfd5128bb2d598f7682899588fee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
;;; TOOL: wat2wasm
(module
;; block w/ multiple results
(func
block (result i32 i64)
i32.const 0
i64.const 0
end
return)
;; block w/ params
(func
i32.const 0
block (param i32) (result i32 i32)
i32.const 1
end
return)
)
|