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/duplicate-function-elimination_optimize-level=2.wast | |
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/duplicate-function-elimination_optimize-level=2.wast')
-rw-r--r-- | test/passes/duplicate-function-elimination_optimize-level=2.wast | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/test/passes/duplicate-function-elimination_optimize-level=2.wast b/test/passes/duplicate-function-elimination_optimize-level=2.wast index 05dbe646b..ce33b7a91 100644 --- a/test/passes/duplicate-function-elimination_optimize-level=2.wast +++ b/test/passes/duplicate-function-elimination_optimize-level=2.wast @@ -54,7 +54,7 @@ (type $0 (func)) (export "keep2" $keep2) (export "other" $other) - (table 3 3 anyfunc) + (table 3 3 funcref) (elem (i32.const 0) $keep2 $other $caller) (func $keep2 (type $0) (nop) @@ -461,7 +461,7 @@ (module (memory 0) (type $T (func)) - (table 2 2 anyfunc) + (table 2 2 funcref) (elem (i32.const 0) $erase $other) (func $erase (type $T) (call_indirect (type $T) @@ -477,7 +477,7 @@ (module (memory 0) (type $T (func)) - (table 2 2 anyfunc) + (table 2 2 funcref) (elem (i32.const 0) $keep2 $other) (func $keep2 (type $T) (call_indirect (type $T) @@ -494,7 +494,7 @@ (memory 0) (type $T (func)) (type $S (func)) - (table 2 2 anyfunc) + (table 2 2 funcref) (elem (i32.const 0) $keep2 $other) (func $keep2 (type $T) (call_indirect (type $T) @@ -513,13 +513,13 @@ (func $erase-even-locals-with-different-names (type $0) (local $i i32) (drop - (get_local $i) + (local.get $i) ) ) (func $other (type $0) (local $j i32) (drop - (get_local $j) + (local.get $j) ) ) ) @@ -529,13 +529,13 @@ (func $keep2 (type $0) (local $i i32) (drop - (get_local $i) + (local.get $i) ) ) (func $other (type $0) (local $j i64) (drop - (get_local $j) + (local.get $j) ) ) ) @@ -544,13 +544,13 @@ (type $0 (func)) (func $erase-even-locals-with-different-names (type $0) (local $i i32) - (set_local $i + (local.set $i (i32.const 0) ) ) (func $other (type $0) (local $j i32) - (set_local $j + (local.set $j (i32.const 0) ) ) @@ -560,13 +560,13 @@ (type $0 (func)) (func $keep2 (type $0) (local $i i32) - (set_local $i + (local.set $i (i32.const 0) ) ) (func $other (type $0) (local $j i64) - (set_local $j + (local.set $j (i64.const 0) ) ) @@ -576,13 +576,13 @@ (type $0 (func)) (func $keep2 (type $0) (local $i i32) - (set_local $i + (local.set $i (i32.const 0) ) ) (func $other (type $0) (local $j i32) - (set_local $j + (local.set $j (i32.const 1) ) ) |