blob: 960ac65e4952d4c4526bc137d17bae8563aa6642 [file] [log] [blame] [edit]
(module
(type $FUNCSIG$v (func))
(memory $0 1024 1024)
(data (i32.const 0) "hello, world")
(func $memory.init (; 0 ;) (type $FUNCSIG$v)
(memory.init 0
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
(func $data.drop (; 1 ;) (type $FUNCSIG$v)
(data.drop 0)
)
(func $memory.copy (; 2 ;) (type $FUNCSIG$v)
(memory.copy
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
(func $memory.fill (; 3 ;) (type $FUNCSIG$v)
(memory.fill
(i32.const 0)
(i32.const 42)
(i32.const 1024)
)
)
)