blob: 743141de68ccb4f5d024d98f8bf13f1d9bcd825d [file] [log] [blame] [edit]
(module
(export "x" (func $x))
(func $x (param $x i32) (result i32)
(if (i32.eq (local.get $x) (i32.const 98658746))
(then
(unreachable) ;; this can be removed destructively, since we do not sent this param
)
)
(i32.const 100)
)
)