diff options
Diffstat (limited to 'test/spec/select.wast')
-rw-r--r-- | test/spec/select.wast | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/spec/select.wast b/test/spec/select.wast index a2406017f..493f67f0a 100644 --- a/test/spec/select.wast +++ b/test/spec/select.wast @@ -1,21 +1,21 @@ (module (func (export "select_i32") (param $lhs i32) (param $rhs i32) (param $cond i32) (result i32) - (select (get_local $lhs) (get_local $rhs) (get_local $cond))) + (select (local.get $lhs) (local.get $rhs) (local.get $cond))) (func (export "select_i64") (param $lhs i64) (param $rhs i64) (param $cond i32) (result i64) - (select (get_local $lhs) (get_local $rhs) (get_local $cond))) + (select (local.get $lhs) (local.get $rhs) (local.get $cond))) (func (export "select_f32") (param $lhs f32) (param $rhs f32) (param $cond i32) (result f32) - (select (get_local $lhs) (get_local $rhs) (get_local $cond))) + (select (local.get $lhs) (local.get $rhs) (local.get $cond))) (func (export "select_f64") (param $lhs f64) (param $rhs f64) (param $cond i32) (result f64) - (select (get_local $lhs) (get_local $rhs) (get_local $cond))) + (select (local.get $lhs) (local.get $rhs) (local.get $cond))) ;; Check that both sides of the select are evaluated (func (export "select_trap_l") (param $cond i32) (result i32) - (select (unreachable) (i32.const 0) (get_local $cond))) + (select (unreachable) (i32.const 0) (local.get $cond))) (func (export "select_trap_r") (param $cond i32) (result i32) - (select (i32.const 0) (unreachable) (get_local $cond))) + (select (i32.const 0) (unreachable) (local.get $cond))) ) (assert_return (invoke "select_i32" (i32.const 1) (i32.const 2) (i32.const 1)) (i32.const 1)) |