wasmer/examples/single_pass_tests/select.wat

21 lines
472 B
Plaintext
Raw Normal View History

2019-02-28 15:12:50 +00:00
(module
(func $main (export "main")
(if (i32.eq (select
(i32.const 10)
(i32.const 20)
(i32.const 1)
) (i32.const 10))
(then)
(else (unreachable))
)
(if (i32.eq (select
(i32.const 10)
(i32.const 20)
(i32.const 0)
) (i32.const 20))
(then)
(else (unreachable))
)
)
)