diff options
Diffstat (limited to 'test/min.wast')
-rw-r--r-- | test/min.wast | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/min.wast b/test/min.wast index 8ef35a49d..4efd4608b 100644 --- a/test/min.wast +++ b/test/min.wast @@ -8,21 +8,21 @@ (func $floats (type $0) (param $f f32) (result f32) (local $t f32) (f32.add - (get_local $t) - (get_local $f) + (local.get $t) + (local.get $f) ) ) (func $neg (type $1) (param $k i32) (param $p i32) (result f32) (local $n f32) - (tee_local $n + (local.tee $n (f32.neg (block $block0 (result f32) (i32.store - (get_local $k) - (get_local $p) + (local.get $k) + (local.get $p) ) (f32.load - (get_local $k) + (local.get $k) ) ) ) @@ -34,7 +34,7 @@ (block $switch-case$1 (br_table $switch-case$1 $switch-case$2 $switch-case$1 (i32.sub - (get_local $x) + (local.get $x) (i32.const 1) ) ) @@ -51,7 +51,7 @@ ) (func $f1 (type $3) (param $i1 i32) (param $i2 i32) (param $i3 i32) (result i32) (block $topmost (result i32) - (get_local $i3) + (local.get $i3) ) ) ) |