]> git.proxmox.com Git - rustc.git/blob - src/binaryen/test/importedSignCast.fromasm
New upstream version 1.23.0+dfsg1
[rustc.git] / src / binaryen / test / importedSignCast.fromasm
1 (module
2 (type $FUNCSIG$ii (func (param i32) (result i32)))
3 (import "env" "_emscripten_glIsTexture" (func $gm (param i32) (result i32)))
4 (import "env" "memory" (memory $0 256 256))
5 (import "env" "table" (table 1 1 anyfunc))
6 (import "env" "memoryBase" (global $memoryBase i32))
7 (import "env" "tableBase" (global $tableBase i32))
8 (elem (get_global $tableBase) $gm)
9 (data (get_global $memoryBase) "importedSignCast.asm.js")
10 (export "func" (func $func))
11 (func $func (; 1 ;)
12 (drop
13 (call $gm
14 (i32.const 0)
15 )
16 )
17 )
18 )