blob: 31ab6a984ae5c2971d6548a3299bcb556063ea0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
;;; TOOL: run-roundtrip
;;; ARGS: --stdout --debug-names --generate-names --enable-tail-call
(module
(table 1 funcref)
(func return_call 0)
(func i32.const 0 return_call_indirect)
)
(;; STDOUT ;;;
(module
(type $t0 (func))
(func $f0 (type $t0)
return_call $f0)
(func $f1 (type $t0)
i32.const 0
return_call_indirect (type $t0))
(table $T0 1 funcref))
;;; STDOUT ;;)
|