diff options
author | Sam Clegg <sbc@chromium.org> | 2020-10-01 11:27:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 11:27:02 -0700 |
commit | 7549fa413b6e3a8eba1f8cfba1c24f01692cfb5b (patch) | |
tree | ebd2ac0946012eebdc2db33b7bc03641db432f40 /test/lld/basic_safe_stack.wat.out | |
parent | e1a843b15d9939eaa258261f5fed67ea9c493a65 (diff) | |
download | binaryen-7549fa413b6e3a8eba1f8cfba1c24f01692cfb5b.tar.gz binaryen-7549fa413b6e3a8eba1f8cfba1c24f01692cfb5b.tar.bz2 binaryen-7549fa413b6e3a8eba1f8cfba1c24f01692cfb5b.zip |
Stop generating __growWasmMemory (#3180)
This depends on https://github.com/emscripten-core/emscripten/pull/12391
Diffstat (limited to 'test/lld/basic_safe_stack.wat.out')
-rw-r--r-- | test/lld/basic_safe_stack.wat.out | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/test/lld/basic_safe_stack.wat.out b/test/lld/basic_safe_stack.wat.out index 74a2355dd..9c3d31bc4 100644 --- a/test/lld/basic_safe_stack.wat.out +++ b/test/lld/basic_safe_stack.wat.out @@ -1,8 +1,8 @@ (module (type $none_=>_none (func)) - (type $i32_=>_i32 (func (param i32) (result i32))) (type $i32_=>_none (func (param i32))) (type $i32_i32_=>_none (func (param i32 i32))) + (type $i32_=>_i32 (func (param i32) (result i32))) (import "env" "__handle_stack_overflow" (func $__handle_stack_overflow)) (memory $0 2) (table $0 1 1 funcref) @@ -17,7 +17,6 @@ (export "main" (func $main)) (export "__data_end" (global $global$1)) (export "__set_stack_limits" (func $__set_stack_limits)) - (export "__growWasmMemory" (func $__growWasmMemory)) (func $__wasm_call_ctors (nop) ) @@ -87,11 +86,6 @@ (local.get $1) ) ) - (func $__growWasmMemory (param $newSize i32) (result i32) - (memory.grow - (local.get $newSize) - ) - ) ) (; --BEGIN METADATA -- @@ -111,8 +105,7 @@ "stackRestore", "stackAlloc", "main", - "__set_stack_limits", - "__growWasmMemory" + "__set_stack_limits" ], "namedGlobals": { "__data_end" : "568" |