summaryrefslogtreecommitdiff
path: root/test/untaken-br_if.wast.fromBinary
blob: efdbded267d2e28aaa3ea0c86fc0bf87dff12ccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(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$3 (result f32)
    (drop
     (f32.const 1)
    )
    (unreachable)
   )
  )
 )
)