blob: 1e118c15edbb8d276cc30dfc8328dd1a7ef9f064 (
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
28
29
|
;;; TOOL: run-interp
(module
(func (export "loop-multi-result") (result i32)
loop (result i32 i32)
i32.const 1
i32.const 2
end
i32.add)
(func (export "loop-param-brif") (result i32)
(local $l i32)
i32.const 0
loop $again (param i32) (result i32)
i32.const 3
i32.add ;; +3 to TOS (loop param)
local.tee $l
local.get $l ;; dup TOS
i32.const 10
i32.lt_s
br_if $again ;; loop if < 10
end
)
)
(;; STDOUT ;;;
loop-multi-result() => i32:3
loop-param-brif() => i32:12
;;; STDOUT ;;)
|