blob: e02fa3e9e2270e9459f15981f732959047dc9f1e (
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
32
|
(module
(type $0 (func (result i32)))
(type $1 (func))
(memory $0 0)
(func $return-i32-but-body-is-unreachable3 (; 0 ;) (type $0) (result i32)
(local $label i32)
(loop $while-in$1
(br $while-in$1)
)
)
(func $return-i32-but-body-is-unreachable4 (; 1 ;) (type $0) (result i32)
(local $label i32)
(loop $while-in$1
(br $while-in$1)
)
)
(func $to-drop-unreachable (; 2 ;) (type $1)
(drop
(block (result i32)
(unreachable)
)
)
)
(func $return-i32-but-body-is-unreachable5 (; 3 ;) (type $0) (result i32)
(local $label i32)
(unreachable)
)
(func $return-i32-but-body-is-unreachable6 (; 4 ;) (type $0) (result i32)
(local $label i32)
(unreachable)
)
)
|