summaryrefslogtreecommitdiff
path: root/test/importedSignCast.fromasm.imprecise
blob: d31be8dc4fcdb35246900d739c1faa06b8251608 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(module
 (type $FUNCSIG$ii (func (param i32) (result i32)))
 (import "env" "table" (table 1 1 anyfunc))
 (import "env" "tableBase" (global $tableBase i32))
 (import "env" "_emscripten_glIsTexture" (func $gm (param i32) (result i32)))
 (elem (get_global $tableBase) $gm)
 (export "func" (func $func))
 (func $func (; 1 ;) (; has Stack IR ;)
  (drop
   (call $gm
    (i32.const 0)
   )
  )
 )
)