blob: b0788065ebe40a9e61a852a817c337cec0669108 [file] [log] [blame] [edit]
(module
(type $FUNCSIG$v (func))
(memory $0 256 256)
(data (i32.const 10) "wasa waka waka waka waka")
(global $mine (mut i32) (i32.const 1))
(export "test2" (func $test2))
(export "test3" (func $test3))
(func $test2 (; 0 ;) (type $FUNCSIG$v)
(global.set $mine
(i32.const 2)
)
(i32.store8
(i32.const 13)
(i32.const 115)
)
)
(func $test3 (; 1 ;) (type $FUNCSIG$v)
(i32.store8
(i32.const 14)
(i32.const 115)
)
)
)