diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-07 15:40:42 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-07 15:40:42 -0800 |
commit | e7e2fe18e406aae3cade9200884014eda1f41f51 (patch) | |
tree | 0d254bf2266c880d078922fc07b3de242bfb9a73 /test/emcc_O2_hello_world.2asm.js | |
parent | 4ef7b2ef49787bc22a73a13b24819a43d7d133d6 (diff) | |
download | binaryen-e7e2fe18e406aae3cade9200884014eda1f41f51.tar.gz binaryen-e7e2fe18e406aae3cade9200884014eda1f41f51.tar.bz2 binaryen-e7e2fe18e406aae3cade9200884014eda1f41f51.zip |
import Math.abs in wasm2asm output
Diffstat (limited to 'test/emcc_O2_hello_world.2asm.js')
-rw-r--r-- | test/emcc_O2_hello_world.2asm.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/emcc_O2_hello_world.2asm.js b/test/emcc_O2_hello_world.2asm.js index 32f41ba64..184a6e34e 100644 --- a/test/emcc_O2_hello_world.2asm.js +++ b/test/emcc_O2_hello_world.2asm.js @@ -10,6 +10,7 @@ function asmFunc(global, env, buffer) { var HEAPF64 = new global.Float64Array(buffer); var Math_imul = global.Math.imul; var Math_fround = global.Math.fround; + var Math_abs = global.Math.abs; var abort = env.abort; var _pthread_cleanup_pop = env._pthread_cleanup_pop; var _pthread_self = env._pthread_self; |