Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions src/preamble.js
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,9 @@ function getWasmImports() {
#endif
var origExports = wasmExports;
#endif
#if SPLIT_MODULE
wasmRawExports = wasmExports;
#endif

#if ASYNCIFY
wasmExports = Asyncify.instrumentWasmExports(wasmExports);
Expand All @@ -739,14 +742,10 @@ function getWasmImports() {
#endif
#endif


#if ABORT_ON_WASM_EXCEPTIONS
wasmExports = instrumentWasmExportsWithAbort(wasmExports);
#endif

#if SPLIT_MODULE
wasmRawExports = wasmExports;
#endif
#if MEMORY64 || CAN_ADDRESS_2GB
wasmExports = applySignatureConversions(wasmExports);
#endif
Expand Down