summaryrefslogtreecommitdiff
path: root/test/reduce/destructive.wast
blob: 65786502f896e14ace3bf59db5ce079846519d18 (plain)
1
2
3
4
5
6
7
8
9
10
(module
  (export "x" (func $x))
  (func $x (param $x i32) (result i32)
    (if (i32.eq (get_local $x) (i32.const 98658746))
      (unreachable) ;; this can be removed destructively, since we do not sent this param
    )
    (i32.const 100)
  )
)