blob: 28a4db60f9b32c94f357b03ee4e314ce8e559858 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
(module
(type $FUNCSIG$v (func))
(import "env" "table" (table $table 1 1 funcref))
(import "env" "memBase" (global $gimport$0 i32))
(import "somewhere" "waka-sneaky" (func $waka-sneaky))
(memory $0 1024 1024)
(elem $0 (i32.const 0) $waka-sneaky)
(func $nada
(nop)
(drop
(i32.const 0)
)
(drop
(f64.const 0)
)
(call_indirect (type $FUNCSIG$v)
(i32.const 0)
)
)
)
|