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/passes/remove-unused-names_code-folding.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/passes/remove-unused-names_code-folding.txt')
-rw-r--r-- | test/passes/remove-unused-names_code-folding.txt | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/test/passes/remove-unused-names_code-folding.txt b/test/passes/remove-unused-names_code-folding.txt index 69c687862..8590836ee 100644 --- a/test/passes/remove-unused-names_code-folding.txt +++ b/test/passes/remove-unused-names_code-folding.txt @@ -466,23 +466,23 @@ (block $out2 (block (drop - (get_local $x) + (local.get $x) ) (block (br_if $out - (get_local $y) + (local.get $y) ) (nop) ) ) (block (if - (get_local $x) + (local.get $x) (br_if $out - (get_local $y) + (local.get $y) ) (br_if $out2 - (get_local $y) + (local.get $y) ) ) (nop) @@ -490,49 +490,49 @@ (if (i32.const 1234) (if - (get_local $x) + (local.get $x) (block (nop) (br_if $out - (get_local $y) + (local.get $y) ) (nop) ) (block (nop) (br_if $out2 - (get_local $y) + (local.get $y) ) (nop) ) ) ) (if - (get_local $x) + (local.get $x) (block $left (br_if $left - (get_local $y) + (local.get $y) ) (nop) ) (block (br_if $out - (get_local $y) + (local.get $y) ) (nop) ) ) (if - (get_local $x) + (local.get $x) (block (br_if $out - (get_local $y) + (local.get $y) ) (nop) ) (block $right (br_if $right - (get_local $y) + (local.get $y) ) (nop) ) @@ -1681,7 +1681,7 @@ (func $if-suffix (; 35 ;) (type $3) (param $x i32) (result i32) (block (if - (get_local $x) + (local.get $x) (block ) (drop @@ -1690,13 +1690,13 @@ ) ) ) - (set_local $x + (local.set $x (i32.const 1) ) ) (block (result i32) (if - (get_local $x) + (local.get $x) (block ) (drop |