diff options
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__) ) ) ) |