summaryrefslogtreecommitdiff
path: root/test/binaryen.js/optimize-levels.js.txt
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2019-01-07 13:24:58 -0800
committerGitHub <noreply@github.com>2019-01-07 13:24:58 -0800
commit7d94900ded8e2e5ce8ef8ee2687528531d8f2a97 (patch)
treed8bba13d306b0c5ecba384384e602e6cccc83015 /test/binaryen.js/optimize-levels.js.txt
parent6f91af190effd7b8a5969314dd4fb3d2ec540524 (diff)
downloadbinaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.gz
binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.bz2
binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.zip
Massive renaming (#1855)
Automated renaming according to https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
Diffstat (limited to 'test/binaryen.js/optimize-levels.js.txt')
-rw-r--r--test/binaryen.js/optimize-levels.js.txt20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/binaryen.js/optimize-levels.js.txt b/test/binaryen.js/optimize-levels.js.txt
index 5381722c0..7a7613e3e 100644
--- a/test/binaryen.js/optimize-levels.js.txt
+++ b/test/binaryen.js/optimize-levels.js.txt
@@ -6,8 +6,8 @@
(func $test (; 0 ;) (type $i) (param $0 i32) (result i32)
(block (result i32)
(if (result i32)
- (get_local $0)
- (get_local $0)
+ (local.get $0)
+ (local.get $0)
(i32.const 0)
)
)
@@ -22,8 +22,8 @@
(func $test (; 0 ;) (type $i) (param $0 i32) (result i32)
(block $block (result i32)
(if (result i32)
- (get_local $0)
- (get_local $0)
+ (local.get $0)
+ (local.get $0)
(i32.const 0)
)
)
@@ -38,9 +38,9 @@ shrinkLevel=1
(export "test" (func $test))
(func $test (; 0 ;) (; has Stack IR ;) (type $i) (param $0 i32) (result i32)
(select
- (get_local $0)
+ (local.get $0)
(i32.const 0)
- (get_local $0)
+ (local.get $0)
)
)
)
@@ -53,9 +53,9 @@ shrinkLevel=0
(export "test" (func $test))
(func $test (; 0 ;) (type $i) (param $0 i32) (result i32)
(select
- (get_local $0)
+ (local.get $0)
(i32.const 0)
- (get_local $0)
+ (local.get $0)
)
)
)
@@ -68,9 +68,9 @@ shrinkLevel=1
(export "test" (func $test))
(func $test (; 0 ;) (; has Stack IR ;) (type $i) (param $0 i32) (result i32)
(select
- (get_local $0)
+ (local.get $0)
(i32.const 0)
- (get_local $0)
+ (local.get $0)
)
)
)