diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-01-07 13:24:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-07 13:24:58 -0800 |
commit | 7d94900ded8e2e5ce8ef8ee2687528531d8f2a97 (patch) | |
tree | d8bba13d306b0c5ecba384384e602e6cccc83015 /test/binaryen.js/stackir.js.txt | |
parent | 6f91af190effd7b8a5969314dd4fb3d2ec540524 (diff) | |
download | binaryen-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/stackir.js.txt')
-rw-r--r-- | test/binaryen.js/stackir.js.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/binaryen.js/stackir.js.txt b/test/binaryen.js/stackir.js.txt index 16d4d22f4..6136f64bc 100644 --- a/test/binaryen.js/stackir.js.txt +++ b/test/binaryen.js/stackir.js.txt @@ -7,8 +7,8 @@ (block (result i32) (block (result i32) (if (result i32) - (get_local $0) - (get_local $0) + (local.get $0) + (local.get $0) (i32.const 0) ) ) @@ -23,9 +23,9 @@ (export "test" (func $test)) (func $test (; 0 ;) (type $i) (param $0 i32) (result i32) block $block0 (result i32) - get_local $0 + local.get $0 if (result i32) - get_local $0 + local.get $0 else i32.const 0 end @@ -39,9 +39,9 @@ (memory $0 0) (export "test" (func $test)) (func $test (; 0 ;) (type $i) (param $0 i32) (result i32) - get_local $0 + local.get $0 if (result i32) - get_local $0 + local.get $0 else i32.const 0 end |