summaryrefslogtreecommitdiff
path: root/test/passes/remove-unused-names_vacuum.txt
blob: 102eb15b33c125b00abd4c2d725576e01e0101a3 (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
(module
 (type $0 (func (result i32)))
 (type $1 (func))
 (func $return-i32-but-body-is-unreachable3 (result i32)
  (local $label i32)
  (loop $while-in$1
   (br $while-in$1)
  )
 )
 (func $return-i32-but-body-is-unreachable4 (result i32)
  (local $label i32)
  (loop $while-in$1
   (br $while-in$1)
  )
 )
 (func $to-drop-unreachable
  (drop
   (unreachable)
  )
 )
 (func $return-i32-but-body-is-unreachable5 (result i32)
  (local $label i32)
  (unreachable)
 )
 (func $return-i32-but-body-is-unreachable6 (result i32)
  (local $label i32)
  (unreachable)
 )
)