blob: d43f0c6e065d67ce5de684e6b075b987d3a1142d [file] [log] [blame]
(module
(type $none_=>_none (func))
(memory $0 1024 1024)
(data $0 (i32.const 0) "hello, world")
(func $memory.init (type $none_=>_none)
(memory.init $0
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
(func $data.drop (type $none_=>_none)
(data.drop $0)
)
(func $memory.copy (type $none_=>_none)
(memory.copy
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
(func $memory.fill (type $none_=>_none)
(memory.fill
(i32.const 0)
(i32.const 42)
(i32.const 1024)
)
)
)