blob: fe9e82072177254fad579d5dd82556a9a91b49d0 [file] [log] [blame] [edit]
(module
(type $none_=>_i32 (func (result i32)))
(type $none_=>_none (func))
(memory $0 256 256)
(export "f1" (func $0))
(export "f2" (func $1))
(export "f4" (func $2))
(func $0
(nop)
)
(func $1 (result i32)
(i32.store
(i32.const 0)
(i32.const 65530)
)
(i32.load
(i32.const 0)
)
)
(func $2 (result i32)
(i32.add
(call $1)
(i32.const 1234)
)
)
)