blob: d560e326b1dadb0b01ec762641e53b5b5697c5eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
(module
(type $0 (func (result i32)))
(type $1 (func (param i64)))
(memory $0 0)
(export "ret" (func $ret))
(export "waka" (func $if-0-unreachable-to-none))
(func $ret (type $0) (result i32)
(block $out i32
(drop
(call $ret)
)
(if
(call $ret)
(return
(i32.const 1)
)
)
(i32.const 999)
)
)
(func $if-0-unreachable-to-none (type $1) (param $0 i64)
(unreachable)
)
)
|