blob: 66412353cac2f68032d21a4d3952bc36e9ca33e5 (
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
33
34
35
36
37
38
39
40
|
(module
(func $return-i32-but-body-is-unreachable3 (result i32)
(local $label i32)
(block ;; without a name here, vaccum had a too-eager bug
(loop $while-in$1
(br $while-in$1)
)
)
)
(func $return-i32-but-body-is-unreachable4 (result i32)
(local $label i32)
(block ;; without a name here, vaccum had a too-eager bug
(loop $while-in$1
(br $while-in$1)
)
)
(i32.const 0)
)
(func $to-drop-unreachable
(drop
(block (result i32)
(unreachable)
)
)
)
(func $return-i32-but-body-is-unreachable5 (result i32)
(local $label i32)
(block ;; without a name here, vaccum had a too-eager bug
(unreachable)
)
)
(func $return-i32-but-body-is-unreachable6 (result i32)
(local $label i32)
(block ;; without a name here, vaccum had a too-eager bug
(unreachable)
)
(i32.const 0)
)
)
|