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