blob: 772b3865389a14f474c65127c2ad253a8258d895 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
(module
(type $FUNCSIG$v (func))
(import "env" "STACKTOP" (global $STACKTOP$asm2wasm$import i32))
(import "env" "imported_twice" (func $imported_twice_a))
(import "env" "an-imported-table-func" (func $imported_table_func))
(import "env" "table" (table 10 10 anyfunc))
(global $STACKTOP (mut i32) (get_global $STACKTOP$asm2wasm$import))
(elem (i32.const 0) $imported_table_func)
(export "stackAlloc" (func $stackAlloc))
(func $stackAlloc (; 2 ;) (type $FUNCSIG$v)
(drop
(get_global $STACKTOP)
)
(call $imported_twice_a)
)
)
|