blob: 48667b74ace116b3f150a6a75af70ae4d67fb0a3 [file] [edit]
(module
(type $none_=>_none (func))
(memory $0 1024 1024)
(data (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)
)
)
)