blob: 4ed149826e22f00de7a432de9dde8d43897d1e2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
;;; TOOL: run-interp
;;; ARGS*: --enable-tail-call
;;; ARGS1: --host-print
(module
(import "host" "print" (func $imported (param i32) (result i32)))
(func (export "f") (result i32)
i32.const 42
return_call $imported
unreachable
)
)
(;; STDOUT ;;;
called host host.print(i32:42) => i32:0
f() => i32:0
;;; STDOUT ;;)
|