summaryrefslogtreecommitdiff
path: root/test/passes/dce_vacuum.txt
blob: 6ee0a7876259f034aea7e1bc02d79da446b5e26f (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
(module
 (type $0 (func (result i32)))
 (type $1 (func (param f32 f32) (result f32)))
 (type $2 (func (param i64) (result i64)))
 (memory $0 0)
 (func $__Z12serveroptionPc (; 0 ;) (type $0) (result i32)
  (return
   (i32.const 0)
  )
 )
 (func $drop-unreachable (; 1 ;) (type $1) (param $var$0 f32) (param $var$1 f32) (result f32)
  (unreachable)
 )
 (func $set-unreachable (; 2 ;) (type $2) (param $var$0 i64) (result i64)
  (local $var$1 i64)
  (local $var$2 i64)
  (if
   (i64.eq
    (get_local $var$1)
    (i64.const 0)
   )
   (unreachable)
   (unreachable)
  )
 )
)