aboutsummaryrefslogtreecommitdiff
path: root/src/settings.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-02-22 18:41:37 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-02-22 18:55:13 -0800
commitc00e097d60100c7a562ac25664eb3c25bb9403ae (patch)
treef724c92e09a6c24c85110a33fc40561a2b0dcbb4 /src/settings.js
parent90710c0c8ee4425c06402cc7831abdee8c519a43 (diff)
always use Math.imul, with fast polyfill. will be useful for faster 64-bit math
Diffstat (limited to 'src/settings.js')
-rw-r--r--src/settings.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/settings.js b/src/settings.js
index f4e23c5b..1023ee11 100644
--- a/src/settings.js
+++ b/src/settings.js
@@ -325,7 +325,6 @@ var BENCHMARK = 0; // If 1, will just time how long main() takes to execute, and
var ASM_JS = 0; // If 1, generate code in asm.js format. XXX This is highly experimental,
// and will not work on most codebases yet. It is NOT recommended that you
// try this yet.
-var USE_MATH_IMUL = 1; // If 1, use Math.imul when normal int math can't be done in ASM_JS
var EXPLICIT_ZEXT = 0; // If 1, generate an explicit conversion of zext i1 to i32, using ?: