blob: e78c3f40e8c3eb913e4ebbc835c49590f4633996 (
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
25
26
27
28
29
30
31
|
(module
(type $FUNCSIG$i (func (result i32)))
(type $FUNCSIG$v (func))
(func $return-i32-but-body-is-unreachable3 (; 0 ;) (type $FUNCSIG$i) (result i32)
(local $label i32)
(loop $while-in$1
(br $while-in$1)
)
)
(func $return-i32-but-body-is-unreachable4 (; 1 ;) (type $FUNCSIG$i) (result i32)
(local $label i32)
(loop $while-in$1
(br $while-in$1)
)
)
(func $to-drop-unreachable (; 2 ;) (type $FUNCSIG$v)
(drop
(block (result i32)
(unreachable)
)
)
)
(func $return-i32-but-body-is-unreachable5 (; 3 ;) (type $FUNCSIG$i) (result i32)
(local $label i32)
(unreachable)
)
(func $return-i32-but-body-is-unreachable6 (; 4 ;) (type $FUNCSIG$i) (result i32)
(local $label i32)
(unreachable)
)
)
|