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