summaryrefslogtreecommitdiff
path: root/test/wasm2js/dynamicLibrary.2asm.js
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2019-07-01 16:46:08 -0400
committerAlon Zakai <azakai@google.com>2019-07-01 13:46:08 -0700
commitab34a779552ea4a8747e7729433d8c7f89c458c0 (patch)
treea6037c5bf1e4bd1379621116fd285f69621ab9ed /test/wasm2js/dynamicLibrary.2asm.js
parent6f466401cb5ee6138898cddb0e9ed3e741166011 (diff)
downloadbinaryen-ab34a779552ea4a8747e7729433d8c7f89c458c0.tar.gz
binaryen-ab34a779552ea4a8747e7729433d8c7f89c458c0.tar.bz2
binaryen-ab34a779552ea4a8747e7729433d8c7f89c458c0.zip
Workaround for wasm2js output minification issue with emscripten (#2185)
* Workaround for wasm2js output minification issue with emscripten When using emscripten with -O2 and --memory-init-file 0, the JS minification breaks on this function for memory initialization setup, causing an exception to be thrown during module setup. Moving from two 'var' declarations for the same variable to one should avoid hitting this with no change in functionality (the var gets hoisted anyway). https://github.com/emscripten-core/emscripten/issues/8886
Diffstat (limited to 'test/wasm2js/dynamicLibrary.2asm.js')
-rw-r--r--test/wasm2js/dynamicLibrary.2asm.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/wasm2js/dynamicLibrary.2asm.js b/test/wasm2js/dynamicLibrary.2asm.js
index 55c6d6500..074c2bc43 100644
--- a/test/wasm2js/dynamicLibrary.2asm.js
+++ b/test/wasm2js/dynamicLibrary.2asm.js
@@ -51,12 +51,13 @@ var assignasmFunc = (
function(mem) {
var _mem = new Uint8Array(mem);
return function(offset, s) {
+ var bytes;
if (typeof Buffer === 'undefined') {
- var bytes = atob(s);
+ bytes = atob(s);
for (var i = 0; i < bytes.length; i++)
_mem[offset + i] = bytes.charCodeAt(i);
} else {
- var bytes = Buffer.from(s, 'base64');
+ bytes = Buffer.from(s, 'base64');
for (var i = 0; i < bytes.length; i++)
_mem[offset + i] = bytes[i];
}