aboutsummaryrefslogtreecommitdiff
path: root/src/settings.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-02-21 14:21:12 -0800
committerAlon Zakai <alonzakai@gmail.com>2014-02-21 14:21:12 -0800
commit989d49f884cf7b72a14881e6040e43185cbfbd5b (patch)
treea53712c049d82e45a17b6662d50a035f152997cb /src/settings.js
parentd2ae502d4cb827d81f1257f088ab7dbf43cb8d1d (diff)
reflect that asm is on by default in fastcomp, even in -O0, in the settings
Diffstat (limited to 'src/settings.js')
-rw-r--r--src/settings.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings.js b/src/settings.js
index c8114059..1c6b998e 100644
--- a/src/settings.js
+++ b/src/settings.js
@@ -446,7 +446,7 @@ var HEADLESS = 0; // If 1, will include shim code that tries to 'fake' a browser
var BENCHMARK = 0; // If 1, will just time how long main() takes to execute, and not
// print out anything at all whatsoever. This is useful for benchmarking.
-var ASM_JS = 0; // If 1, generate code in asm.js format. If 2, emits the same code except
+var ASM_JS = 1; // If 1, generate code in asm.js format. If 2, emits the same code except
// for omitting 'use asm'
var PGO = 0; // Enables profile-guided optimization in the form of runtime checks for