blob: 5b5663615bd577f64384b81df3454aa85a678b61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
;;; TOOL: run-interp
;;; ARGS*: --enable-tail-call
(module
(func (export "f") (result i32)
(i64.const 1)
(return_call $g))
(func $g (param i64) (result i32)
(i32.const 3)
(return_call $h))
(func $h (param i32) (result i32)
(i32.const 2)
(local.set 0)
(local.get 0)
return)
)
(;; STDOUT ;;;
f() => i32:2
;;; STDOUT ;;)
|