blob: 1665c7a4e4446a411315a44cd6868ea288d7d14a [file] [log] [blame] [edit]
(module
(type $0 (func (result i32)))
(type $1 (func))
(memory $0 256 256)
(export "f1" (func $0))
(export "f2" (func $1))
(export "f4" (func $2))
(func $0 (; 0 ;) (type $1)
(nop)
)
(func $1 (; 1 ;) (type $0) (result i32)
(i32.store
(i32.const 0)
(i32.const 65530)
)
(i32.load
(i32.const 0)
)
)
(func $2 (; 2 ;) (type $0) (result i32)
(i32.add
(call $1)
(i32.const 1234)
)
)
)