diff options
author | Max Graey <maxgraey@gmail.com> | 2020-11-10 23:04:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 13:04:16 -0800 |
commit | 236296d8563e0f90c3b57f32f1f8f63bac414b89 (patch) | |
tree | 56aaabeedd5d02229d20622d4214fba8f63e6f7f /test/wasm2js/float_literals-modified.2asm.js.opt | |
parent | 0c20d9f427b63a6fdc354bb917c11f382068eaec (diff) | |
download | binaryen-236296d8563e0f90c3b57f32f1f8f63bac414b89.tar.gz binaryen-236296d8563e0f90c3b57f32f1f8f63bac414b89.tar.bz2 binaryen-236296d8563e0f90c3b57f32f1f8f63bac414b89.zip |
[wasm2js] Use native JavaScript Math.trunc (#3329)
Diffstat (limited to 'test/wasm2js/float_literals-modified.2asm.js.opt')
-rw-r--r-- | test/wasm2js/float_literals-modified.2asm.js.opt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/wasm2js/float_literals-modified.2asm.js.opt b/test/wasm2js/float_literals-modified.2asm.js.opt index 5772a095e..9ae915a51 100644 --- a/test/wasm2js/float_literals-modified.2asm.js.opt +++ b/test/wasm2js/float_literals-modified.2asm.js.opt @@ -23,6 +23,7 @@ function asmFunc(env) { var Math_max = Math.max; var Math_floor = Math.floor; var Math_ceil = Math.ceil; + var Math_trunc = Math.trunc; var Math_sqrt = Math.sqrt; var abort = env.abort; var nan = NaN; |