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.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/duplicate-function-elimination_optimize-level=2.txt')
-rw-r--r-- | test/passes/duplicate-function-elimination_optimize-level=2.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/passes/duplicate-function-elimination_optimize-level=2.txt b/test/passes/duplicate-function-elimination_optimize-level=2.txt index 83fff3b04..3232613b0 100644 --- a/test/passes/duplicate-function-elimination_optimize-level=2.txt +++ b/test/passes/duplicate-function-elimination_optimize-level=2.txt @@ -43,7 +43,7 @@ (module (type $0 (func)) (memory $0 0) - (table $0 3 3 anyfunc) + (table $0 3 3 funcref) (elem (i32.const 0) $keep2 $keep2 $caller) (export "keep2" (func $keep2)) (export "other" (func $keep2)) @@ -388,7 +388,7 @@ (module (type $T (func)) (memory $0 0) - (table $0 2 2 anyfunc) + (table $0 2 2 funcref) (elem (i32.const 0) $erase $erase) (func $erase (; 0 ;) (type $T) (call_indirect (type $T) @@ -399,7 +399,7 @@ (module (type $T (func)) (memory $0 0) - (table $0 2 2 anyfunc) + (table $0 2 2 funcref) (elem (i32.const 0) $keep2 $other) (func $keep2 (; 0 ;) (type $T) (call_indirect (type $T) @@ -416,7 +416,7 @@ (type $T (func)) (type $S (func)) (memory $0 0) - (table $0 2 2 anyfunc) + (table $0 2 2 funcref) (elem (i32.const 0) $keep2 $other) (func $keep2 (; 0 ;) (type $T) (call_indirect (type $T) @@ -435,7 +435,7 @@ (func $erase-even-locals-with-different-names (; 0 ;) (type $0) (local $i i32) (drop - (get_local $i) + (local.get $i) ) ) ) @@ -445,13 +445,13 @@ (func $keep2 (; 0 ;) (type $0) (local $i i32) (drop - (get_local $i) + (local.get $i) ) ) (func $other (; 1 ;) (type $0) (local $j i64) (drop - (get_local $j) + (local.get $j) ) ) ) @@ -460,7 +460,7 @@ (memory $0 0) (func $erase-even-locals-with-different-names (; 0 ;) (type $0) (local $i i32) - (set_local $i + (local.set $i (i32.const 0) ) ) @@ -470,13 +470,13 @@ (memory $0 0) (func $keep2 (; 0 ;) (type $0) (local $i i32) - (set_local $i + (local.set $i (i32.const 0) ) ) (func $other (; 1 ;) (type $0) (local $j i64) - (set_local $j + (local.set $j (i64.const 0) ) ) @@ -486,13 +486,13 @@ (memory $0 0) (func $keep2 (; 0 ;) (type $0) (local $i i32) - (set_local $i + (local.set $i (i32.const 0) ) ) (func $other (; 1 ;) (type $0) (local $j i32) - (set_local $j + (local.set $j (i32.const 1) ) ) |