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