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