blob: c53f6e3bc4fe246ca089dd95291ae58d5d946d61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
;;; TOOL: run-interp
(module
(func (export "if-multi-result") (result i32)
i32.const 1
if (result i32 f32)
i32.const 2
f32.const 3
else
unreachable
end
i32.trunc_f32_s
i32.add)
(func (export "if-param") (result f32)
f32.const 3
i32.const 0
if (param f32) (result f32)
unreachable
else
f32.const 100
f32.add
end)
)
(;; STDOUT ;;;
if-multi-result() => i32:5
if-param() => f32:103.000000
;;; STDOUT ;;)
|