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/standalone-wasm-with-start.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/standalone-wasm-with-start.wat.out')
-rw-r--r-- | test/lld/standalone-wasm-with-start.wat.out | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/test/lld/standalone-wasm-with-start.wat.out b/test/lld/standalone-wasm-with-start.wat.out index d463d0bfb..7e91a9bef 100644 --- a/test/lld/standalone-wasm-with-start.wat.out +++ b/test/lld/standalone-wasm-with-start.wat.out @@ -1,6 +1,5 @@ (module (type $none_=>_i32 (func (result i32))) - (type $i32_=>_i32 (func (param i32) (result i32))) (memory $0 2) (table $0 1 1 funcref) (elem (i32.const 0) $foo) @@ -11,18 +10,12 @@ (export "_start" (func $_start)) (export "__heap_base" (global $global$1)) (export "__data_end" (global $global$2)) - (export "__growWasmMemory" (func $__growWasmMemory)) (func $_start (result i32) (nop) ) (func $foo (result i32) (nop) ) - (func $__growWasmMemory (param $newSize i32) (result i32) - (memory.grow - (local.get $newSize) - ) - ) ) (; --BEGIN METADATA -- @@ -34,8 +27,7 @@ "externs": [ ], "exports": [ - "_start", - "__growWasmMemory" + "_start" ], "namedGlobals": { "__heap_base" : "66112", |