summaryrefslogtreecommitdiff
path: root/test/passes/remove-unused-names.txt
blob: bba63259aafdb33e9ddff9bd2e54da3727c45863 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
(module
 (type $1 (func))
 (type $0 (func (param i32) (result i32)))
 (type $2 (func (result i32)))
 (memory $0 256 256)
 (func $b0 (param $i1 i32) (result i32)
  (i32.const 0)
 )
 (func $loops
  (block $out
   (loop $in
    (br $out)
    (br $in)
   )
  )
  (loop $in0
   (br $in0)
  )
  (nop)
  (block $out1
   (loop $in3
    (br $out1)
    (br $in3)
   )
  )
  (block $out2
   (loop $in4
    (br $out2)
    (br $in4)
   )
  )
  (loop $in5
   (block $out3
    (br $out3)
    (br $in5)
   )
  )
  (loop $in6
   (block $out4
    (br $out4)
    (br $in6)
   )
  )
  (block $out5
   (loop $in7
    (br $out5)
    (br $in7)
   )
  )
 )
 (func $merges
  (block $b
   (br $b)
   (br $b)
  )
  (block $b0
   (br_table $b0 $b0
    (i32.const 3)
   )
  )
  (block $b1
   (br_table $b1 $b1
    (i32.const 3)
   )
  )
 )
 (func $merge-typed-with-unreachable-child (result i32)
  (local $0 f32)
  (block $label$1 (result i32)
   (br_if $label$1
    (i32.const 1)
    (br_if $label$1
     (i32.const 0)
     (br $label$1
      (i32.const 0)
     )
    )
   )
  )
 )
 (func $loop-with-child-of-other-type
  (drop
   (loop (result i32)
    (unreachable)
   )
  )
 )
)