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