You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
499 B
24 lines
499 B
5 years ago
|
(module
|
||
|
(func $f (import "" "f") (param i32 i64) (result i64 i32))
|
||
|
|
||
|
(func $g (export "g") (param i32 i64) (result i64 i32)
|
||
|
(call $f (local.get 0) (local.get 1))
|
||
|
)
|
||
|
|
||
|
(func $round_trip_many
|
||
|
(export "round_trip_many")
|
||
|
(param i64 i64 i64 i64 i64 i64 i64 i64 i64 i64)
|
||
|
(result i64 i64 i64 i64 i64 i64 i64 i64 i64 i64)
|
||
|
|
||
|
local.get 0
|
||
|
local.get 1
|
||
|
local.get 2
|
||
|
local.get 3
|
||
|
local.get 4
|
||
|
local.get 5
|
||
|
local.get 6
|
||
|
local.get 7
|
||
|
local.get 8
|
||
|
local.get 9)
|
||
|
)
|