summaryrefslogtreecommitdiff
path: root/test/importedSignCast.fromasm.imprecise
blob: fbe186610a302cdfd4e25c7313b2176dd3378dc1 (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
  (drop
   (call $gm
    (i32.const 0)
   )
  )
 )
)