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 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
(module
(import "env" "memory" (memory $memory 256 256))
(import "env" "table" (table $table 0 0 funcref))
(import "env" "__memory_base" (global $__memory_base i32))
(import "env" "__table_base" (global $__table_base i32))
(export "ex" (func $ex))
(func $missing (; 0 ;) (param $x i32) (param $y f64)
(nop)
)
(func $extra (; 1 ;) (param $x i32) (param $y f64)
(nop)
)
(func $mix (; 2 ;) (param $a i32)
(nop)
)
(func $ex (; 3 ;)
(call $missing
(i32.const 0)
(f64.const 0)
)
(call $missing
(i32.const 1)
(f64.const 0)
)
(call $extra
(i32.const 1)
(f64.const 2)
)
(call $extra
(i32.const 1)
(f64.const 2)
)
(call $mix
(i32.const 0)
)
(call $mix
(i32.const 1)
)
(call $mix
(i32.const 1)
)
)
)
|