summaryrefslogtreecommitdiff
path: root/test/passes/code-folding.txt
blob: a3c3f664c18acb528ef8f7fefa2b6626783b28b3 (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
(module
 (type $13 (func (param f32)))
 (type $1 (func))
 (type $2 (func (result f32)))
 (table 282 282 anyfunc)
 (memory $0 1 1)
 (func $0 (type $1)
  (block $label$1
   (if
    (i32.const 1)
    (block
     (block $label$3
      (call_indirect $13
       (block $label$4
        (br $label$3)
       )
       (i32.const 105)
      )
     )
     (nop)
    )
   )
  )
 )
 (func $negative-zero (type $2) (result f32)
  (if (result f32)
   (i32.const 0)
   (block $label$0 (result f32)
    (f32.const 0)
   )
   (block $label$1 (result f32)
    (f32.const -0)
   )
  )
 )
 (func $negative-zero-b (type $2) (result f32)
  (drop
   (i32.const 0)
  )
  (block $label$0 (result f32)
   (f32.const -0)
  )
 )
 (func $negative-zero-c (type $2) (result f32)
  (drop
   (i32.const 0)
  )
  (block $label$0 (result f32)
   (f32.const 0)
  )
 )
)