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/metadce/outside.wast.dced | |
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/metadce/outside.wast.dced')
-rw-r--r-- | test/metadce/outside.wast.dced | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/metadce/outside.wast.dced b/test/metadce/outside.wast.dced index 689e0ac81..c1f399ede 100644 --- a/test/metadce/outside.wast.dced +++ b/test/metadce/outside.wast.dced @@ -2,9 +2,9 @@ (type $FUNCSIG$v (func)) (import "env" "memory" (memory $0 256 256)) (data (i32.const 1024) "abcd") - (data (get_global $from_segment) "abcd") - (import "env" "table" (table $0 10 10 anyfunc)) - (elem (get_global $from_segment_2) $table_func) + (data (global.get $from_segment) "abcd") + (import "env" "table" (table $0 10 10 funcref)) + (elem (global.get $from_segment_2) $table_func) (import "env" "DYNAMICTOP_PTR" (global $DYNAMICTOP_PTR$asm2wasm$import i32)) (import "env" "js_func" (func $a_js_func)) (global $__THREW__ (mut i32) (i32.const 0)) @@ -17,10 +17,10 @@ (func $a_wasm_func (; 2 ;) (type $FUNCSIG$v) (call $a_js_func) (drop - (get_global $DYNAMICTOP_PTR$asm2wasm$import) + (global.get $DYNAMICTOP_PTR$asm2wasm$import) ) (drop - (get_global $__THREW__) + (global.get $__THREW__) ) ) ) |