diff options
author | Sam Clegg <sbc@chromium.org> | 2020-08-05 18:27:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-05 18:27:20 -0700 |
commit | 550b36a1866a262f21c008a4d8cbaf65d14d0c01 (patch) | |
tree | 30c0edc27f01b812e67db13bfcdeedbc09d3a695 /test/lld/main_module_table_4.wat.out | |
parent | e93fbc0c117bcfe645bab1b30d5802e619e68abc (diff) | |
download | binaryen-550b36a1866a262f21c008a4d8cbaf65d14d0c01.tar.gz binaryen-550b36a1866a262f21c008a4d8cbaf65d14d0c01.tar.bz2 binaryen-550b36a1866a262f21c008a4d8cbaf65d14d0c01.zip |
Refactor wasm-emscripten-finalize to use a single pass runner (#2987)
Diffstat (limited to 'test/lld/main_module_table_4.wat.out')
-rw-r--r-- | test/lld/main_module_table_4.wat.out | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/lld/main_module_table_4.wat.out b/test/lld/main_module_table_4.wat.out index f2076f4e2..cffa7c1b6 100644 --- a/test/lld/main_module_table_4.wat.out +++ b/test/lld/main_module_table_4.wat.out @@ -11,9 +11,9 @@ (global $sp (mut i32) (global.get $sp_import)) (export "__stdio_write" (func $__stdio_write)) (export "__data_end" (global $global)) + (export "dynCall_v" (func $dynCall_v)) (export "__growWasmMemory" (func $__growWasmMemory)) (export "__assign_got_enties" (func $__assign_got_enties)) - (export "dynCall_v" (func $dynCall_v)) (func $__stdio_write (nop) ) @@ -25,16 +25,16 @@ ) ) ) - (func $__growWasmMemory (param $newSize i32) (result i32) - (memory.grow - (local.get $newSize) - ) - ) (func $dynCall_v (param $fptr i32) (call_indirect (type $none_=>_none) (local.get $fptr) ) ) + (func $__growWasmMemory (param $newSize i32) (result i32) + (memory.grow + (local.get $newSize) + ) + ) ) (; --BEGIN METADATA -- @@ -52,9 +52,9 @@ ], "exports": [ "__stdio_write", + "dynCall_v", "__growWasmMemory", - "__assign_got_enties", - "dynCall_v" + "__assign_got_enties" ], "namedGlobals": { "__data_end" : "42" |