diff options
author | Sam Clegg <sbc@chromium.org> | 2020-11-05 16:10:10 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-05 16:10:10 -0800 |
commit | 040a7cc3721292669609cc8020bd11ad6930d321 (patch) | |
tree | e192d281f37be7bba102861feceee6e6acdba510 /test/wasm2js/unary-ops.2asm.js.opt | |
parent | 2887e516eb2a4564ddca76ec42282822af24dd97 (diff) | |
download | binaryen-040a7cc3721292669609cc8020bd11ad6930d321.tar.gz binaryen-040a7cc3721292669609cc8020bd11ad6930d321.tar.bz2 binaryen-040a7cc3721292669609cc8020bd11ad6930d321.zip |
wasm2js: Remove global dict arguments to asmFunc (#3325)
Diffstat (limited to 'test/wasm2js/unary-ops.2asm.js.opt')
-rw-r--r-- | test/wasm2js/unary-ops.2asm.js.opt | 39 |
1 files changed, 13 insertions, 26 deletions
diff --git a/test/wasm2js/unary-ops.2asm.js.opt b/test/wasm2js/unary-ops.2asm.js.opt index d42ea3e97..b854489b6 100644 --- a/test/wasm2js/unary-ops.2asm.js.opt +++ b/test/wasm2js/unary-ops.2asm.js.opt @@ -1,17 +1,17 @@ -function asmFunc(global, env) { - var Math_imul = global.Math.imul; - var Math_fround = global.Math.fround; - var Math_abs = global.Math.abs; - var Math_clz32 = global.Math.clz32; - var Math_min = global.Math.min; - var Math_max = global.Math.max; - var Math_floor = global.Math.floor; - var Math_ceil = global.Math.ceil; - var Math_sqrt = global.Math.sqrt; +function asmFunc(env) { + var Math_imul = Math.imul; + var Math_fround = Math.fround; + var Math_abs = Math.abs; + var Math_clz32 = Math.clz32; + var Math_min = Math.min; + var Math_max = Math.max; + var Math_floor = Math.floor; + var Math_ceil = Math.ceil; + var Math_sqrt = Math.sqrt; var abort = env.abort; - var nan = global.NaN; - var infinity = global.Infinity; + var nan = NaN; + var infinity = Infinity; var i64toi32_i32$HIGH_BITS = 0; function $1($0) { $0 = $0 | 0; @@ -132,20 +132,7 @@ function asmFunc(global, env) { }; } -var retasmFunc = asmFunc({ - Math, - Int8Array, - Uint8Array, - Int16Array, - Uint16Array, - Int32Array, - Uint32Array, - Float32Array, - Float64Array, - NaN, - Infinity - }, { - abort: function() { throw new Error('abort'); } +var retasmFunc = asmFunc( { abort: function() { throw new Error('abort'); } }); export var i32_popcnt = retasmFunc.i32_popcnt; export var check_popcnt_i64 = retasmFunc.check_popcnt_i64; |