blob: 070f4bd8be07887827b2a885e361fe8f099fddbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
(module
(type $FUNCSIG$v (func))
(import "env" "table" (table $0 10 10 funcref))
(elem (i32.const 0) $imported_table_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))
(global $STACKTOP (mut i32) (global.get $STACKTOP$asm2wasm$import))
(export "stackAlloc" (func $stackAlloc))
(func $stackAlloc (; 2 ;) (type $FUNCSIG$v)
(drop
(global.get $STACKTOP)
)
(call $imported_twice_a)
)
)
|