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/merge/fusing.wast.toMerge | |
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/merge/fusing.wast.toMerge')
-rw-r--r-- | test/merge/fusing.wast.toMerge | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/merge/fusing.wast.toMerge b/test/merge/fusing.wast.toMerge index 4abd0a5e1..8d17795b1 100644 --- a/test/merge/fusing.wast.toMerge +++ b/test/merge/fusing.wast.toMerge @@ -2,7 +2,7 @@ (import "env" "memoryBase" (global $memoryBase i32)) (import "env" "tableBase" (global $tableBase i32)) (import "env" "memory" (memory $0 256)) - (import "env" "table" (table 0 anyfunc)) + (import "env" "table" (table 0 funcref)) (import "env" "foo" (func $b-foo)) (export "bar" (func $bar-func)) (global $b-global f64 (f64.const 2.14281428)) @@ -13,8 +13,8 @@ ) (func $bar-func (drop (f64.const 3.14159)) - (drop (get_global $a-global)) - (drop (get_global $b-global)) + (drop (global.get $a-global)) + (drop (global.get $b-global)) ) ) |