blob: 3c6fc1405847a146696e26126fa6aa0021fc01fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
(module
(type $FUNCSIG$ii (func (param i32) (result i32)))
(import "env" "_emscripten_glIsTexture" (func $gm (param i32) (result i32)))
(import "env" "memory" (memory $0 256 256))
(import "env" "table" (table 1 1 anyfunc))
(import "env" "memoryBase" (global $memoryBase i32))
(import "env" "tableBase" (global $tableBase i32))
(elem (get_global $tableBase) $gm)
(export "func" (func $func))
(func $func (; 1 ;)
(drop
(call $gm
(i32.const 0)
)
)
)
)
|