diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-07 14:11:55 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-07 14:11:55 -0800 |
commit | 0fb0a68db70f2720d93a182129e73e4a0eaeb3cb (patch) | |
tree | 263f7bfedd28d9ac9edc34df02b9853e1f81c581 /test/hello_world.2asm.js | |
parent | c44dc7b23fae93222c8a38da53e50c0b0aaa0366 (diff) | |
download | binaryen-0fb0a68db70f2720d93a182129e73e4a0eaeb3cb.tar.gz binaryen-0fb0a68db70f2720d93a182129e73e4a0eaeb3cb.tar.bz2 binaryen-0fb0a68db70f2720d93a182129e73e4a0eaeb3cb.zip |
import Math.imul
Diffstat (limited to 'test/hello_world.2asm.js')
-rw-r--r-- | test/hello_world.2asm.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/hello_world.2asm.js b/test/hello_world.2asm.js index a7437f64b..48b0538c8 100644 --- a/test/hello_world.2asm.js +++ b/test/hello_world.2asm.js @@ -8,6 +8,7 @@ function asmFunc(global, env, buffer) { var HEAPU32 = new global.Uint32Array(buffer); var HEAPF32 = new global.Float32Array(buffer); var HEAPF64 = new global.Float64Array(buffer); + var Math_imul = global.Math.imul; function add(x, y) { x = x | 0; y = y | 0; |