diff options
Diffstat (limited to 'test/dylib.wasm.fromBinary')
-rw-r--r-- | test/dylib.wasm.fromBinary | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/dylib.wasm.fromBinary b/test/dylib.wasm.fromBinary index 37dcab84f..7c518b28f 100644 --- a/test/dylib.wasm.fromBinary +++ b/test/dylib.wasm.fromBinary @@ -2,15 +2,15 @@ (type $0 (func (param i32) (result i32))) (type $1 (func (result i32))) (type $2 (func)) - (import "env" "memoryBase" (global $gimport$0 i32)) - (import "env" "memory" (memory $0 256)) + (import "env" "memory" (memory $2 256)) + (data (get_global $gimport$0) "hello, world!") (import "env" "table" (table 0 anyfunc)) + (import "env" "memoryBase" (global $gimport$0 i32)) (import "env" "tableBase" (global $gimport$4 i32)) (import "env" "_puts" (func $fimport$1 (param i32) (result i32))) (global $global$0 (mut i32) (i32.const 0)) (global $global$1 (mut i32) (i32.const 0)) (global $global$2 i32 (i32.const 0)) - (data (get_global $gimport$0) "hello, world!") (export "__post_instantiate" (func $2)) (export "_main" (func $0)) (export "runPostSets" (func $1)) |