diff options
author | Alon Zakai <alonzakai@gmail.com> | 2019-04-18 10:39:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-18 10:39:41 -0700 |
commit | 8dc68bc96db046127d648644daa89f524a668863 (patch) | |
tree | 3eb2845e5724c6097ba160095498005290467795 /test/wasm2js/base64.2asm.js | |
parent | 77c44ecded323174d79a98bd43c3d2c064ac08e4 (diff) | |
download | binaryen-8dc68bc96db046127d648644daa89f524a668863.tar.gz binaryen-8dc68bc96db046127d648644daa89f524a668863.tar.bz2 binaryen-8dc68bc96db046127d648644daa89f524a668863.zip |
wasm2js: remove "use asm", we are not asm.js anymore (#2020)
Also emit the memory growth code based on memory growth, and not whether we are "use asm" or not.
Diffstat (limited to 'test/wasm2js/base64.2asm.js')
-rw-r--r-- | test/wasm2js/base64.2asm.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/wasm2js/base64.2asm.js b/test/wasm2js/base64.2asm.js index 3960d7ca6..c56a9db13 100644 --- a/test/wasm2js/base64.2asm.js +++ b/test/wasm2js/base64.2asm.js @@ -1,6 +1,6 @@ function asmFunc(global, env, buffer) { - "use asm"; + "almost asm"; var HEAP8 = new global.Int8Array(buffer); var HEAP16 = new global.Int16Array(buffer); var HEAP32 = new global.Int32Array(buffer); |