blob: 16b7627fe7a61165635bcd159116c9f33a5a9c07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
(module
(type $FUNCSIG$v (func))
(import "env" "_abort" (func $_abort))
(memory $0 256 256)
(data (i32.const 10) "waka waka waka waka waka")
(table $0 2 2 anyfunc)
(elem (i32.const 0) $_abort $call-indirect)
(export "test1" (func $test1))
(func $test1 (; 1 ;) (type $FUNCSIG$v)
(call_indirect (type $FUNCSIG$v)
(i32.const 0)
)
(i32.store8
(i32.const 20)
(i32.const 120)
)
)
(func $call-indirect (; 2 ;) (type $FUNCSIG$v)
(i32.store8
(i32.const 40)
(i32.const 67)
)
)
)
|