summaryrefslogtreecommitdiff
path: root/test/passes/O.txt
blob: 531712311722a0babd16b5d2320ebef3fe331ad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(module
  (type $0 (func (result i32)))
  (memory $0 0)
  (func $ret (type $0) (result i32)
    (block $out i32
      (drop
        (call $ret)
      )
      (if
        (call $ret)
        (return
          (i32.const 1)
        )
      )
      (i32.const 999)
    )
  )
)