diff options
author | Sam Clegg <sbc@chromium.org> | 2022-08-04 16:07:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-04 23:07:08 +0000 |
commit | 9534e6927c41f4a6a5d06d58d00c271c9f066e9a (patch) | |
tree | 38bf1a3d763a5d4c2be409f8911b0c7f8d5269f2 /test/lld/em_asm_main_thread.wat.out | |
parent | e5c8bf665054bbaeab79506c562684f34ef376db (diff) | |
download | binaryen-9534e6927c41f4a6a5d06d58d00c271c9f066e9a.tar.gz binaryen-9534e6927c41f4a6a5d06d58d00c271c9f066e9a.tar.bz2 binaryen-9534e6927c41f4a6a5d06d58d00c271c9f066e9a.zip |
Cleanup em_asm/em_js strings as part of PostEmscripten (#4871)
Rather than doing it as a side effect of dumping the metadata in
wasm-emscripten-finalize.
Diffstat (limited to 'test/lld/em_asm_main_thread.wat.out')
-rw-r--r-- | test/lld/em_asm_main_thread.wat.out | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/lld/em_asm_main_thread.wat.out b/test/lld/em_asm_main_thread.wat.out index fdb75c98f..5c279a598 100644 --- a/test/lld/em_asm_main_thread.wat.out +++ b/test/lld/em_asm_main_thread.wat.out @@ -13,8 +13,10 @@ (global $global$1 i32 (i32.const 66192)) (global $global$2 i32 (i32.const 652)) (memory $0 2) - (data (i32.const 568) "") + (data (i32.const 568) "{ Module.print(\"Hello world\"); }\00{ return $0 + $1; }\00{ Module.print(\"Got \" + $0); }\00") (table $0 1 1 funcref) + (export "__start_em_asm" (global $0)) + (export "__stop_em_asm" (global $1)) (export "memory" (memory $0)) (export "__wasm_call_ctors" (func $__wasm_call_ctors)) (export "__heap_base" (global $global$1)) @@ -210,6 +212,8 @@ "main" ], "namedGlobals": { + "__start_em_asm" : "568", + "__stop_em_asm" : "652", "__heap_base" : "66192", "__data_end" : "652" }, |