diff options
Diffstat (limited to 'test/passes/post-emscripten.wast')
-rw-r--r-- | test/passes/post-emscripten.wast | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/test/passes/post-emscripten.wast b/test/passes/post-emscripten.wast index 5c255ffca..b06d07e7a 100644 --- a/test/passes/post-emscripten.wast +++ b/test/passes/post-emscripten.wast @@ -6,7 +6,7 @@ (drop (i32.load (i32.add - (get_local $x) + (local.get $x) (i32.const 1) ) ) @@ -14,7 +14,7 @@ (drop (i32.load (i32.add - (get_local $x) + (local.get $x) (i32.const 8) ) ) @@ -22,7 +22,7 @@ (drop (i32.load (i32.add - (get_local $x) + (local.get $x) (i32.const 1023) ) ) @@ -30,7 +30,7 @@ (drop (i32.load (i32.add - (get_local $x) + (local.get $x) (i32.const 1024) ) ) @@ -38,7 +38,7 @@ (drop (i32.load (i32.add - (get_local $x) + (local.get $x) (i32.const 2048) ) ) @@ -47,7 +47,7 @@ (i32.load (i32.add (i32.const 4) - (get_local $x) + (local.get $x) ) ) ) @@ -58,64 +58,64 @@ (i32.const 1) (i32.const 3) ) - (get_local $0) + (local.get $0) ) (i32.store offset=2 (i32.add (i32.const 3) (i32.const 1) ) - (get_local $0) + (local.get $0) ) (i32.store offset=2 (i32.add - (get_local $0) + (local.get $0) (i32.const 5) ) - (get_local $0) + (local.get $0) ) (i32.store offset=2 (i32.add (i32.const 7) - (get_local $0) + (local.get $0) ) - (get_local $0) + (local.get $0) ) (i32.store offset=2 (i32.add (i32.const -11) ;; do not fold this! - (get_local $0) + (local.get $0) ) - (get_local $0) + (local.get $0) ) (i32.store offset=2 (i32.add - (get_local $0) + (local.get $0) (i32.const -13) ;; do not fold this! ) - (get_local $0) + (local.get $0) ) (i32.store offset=2 (i32.add (i32.const -15) (i32.const 17) ) - (get_local $0) + (local.get $0) ) (i32.store offset=2 (i32.add (i32.const -21) (i32.const 19) ) - (get_local $0) + (local.get $0) ) (i32.store offset=2 (i32.const 23) - (get_local $0) + (local.get $0) ) (i32.store offset=2 (i32.const -25) - (get_local $0) + (local.get $0) ) (drop (i32.load offset=2 @@ -136,7 +136,7 @@ (drop (i32.load offset=2 (i32.add - (get_local $0) + (local.get $0) (i32.const 6) ) ) @@ -149,7 +149,7 @@ (i32.load offset=2 (i32.add (i32.const 10) - (get_local $0) + (local.get $0) ) ) ) @@ -174,16 +174,16 @@ (f64.const 1) ) ) - (set_local $x (f64.const 5)) + (local.set $x (f64.const 5)) (drop (call $Math_pow - (get_local $x) + (local.get $x) (f64.const 2) ) ) (drop (call $Math_pow - (tee_local $y (f64.const 7)) + (local.tee $y (f64.const 7)) (f64.const 2) ) ) |