summaryrefslogtreecommitdiff
path: root/test/wasm2js/unreachable-if.wast
blob: 5bc0257c0a25acedf20ab83611b48a743b8f766a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
;; Regression test for bad assertion in autodrop that did not expect the if to
;; be finalized to unreachable.
(module
 (func $test (result i32)
  (block $l (result i32)
   (drop
    (br_if $l
     (if (result i32)
      (unreachable)
      (then
       (i32.const 0)
      )
      (else
       (i32.const 0)
      )
     )
    )
    (i32.const 0)
   )
  )
 )
)