summaryrefslogtreecommitdiff
path: root/test/untaken-br_if.wast.from-wast
blob: 86ce53f41b43356471f38851ce388a9ffceca04b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(module
 (type $0 (func (result f32)))
 (memory $0 0)
 (func $binaryify-untaken-br_if (type $0) (result f32)
  (if (result f32)
   (i32.const 1)
   (unreachable)
   (block $label$1 (result f32)
    (br_if $label$1
     (f32.const 1)
     (unreachable)
    )
   )
  )
 )
)