aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-12-13 14:12:41 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-12-13 14:12:41 -0800
commita5d305c2737d56870a55cc21e2f7906e58fd11e4 (patch)
treeab2ec99411939da5362e563bc0964946f5622081 /src
parentdc8b20bbb26d4a10119f07b58e02a1a15eccd07c (diff)
default to NAMED_GLOBALS
Diffstat (limited to 'src')
-rw-r--r--src/settings.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings.js b/src/settings.js
index acf71c03..af2e8082 100644
--- a/src/settings.js
+++ b/src/settings.js
@@ -194,7 +194,7 @@ var PGO = 0; // Profile-guided optimization.
// All CORRECT_* options default to 1 with PGO builds.
// See https://github.com/kripken/emscripten/wiki/Optimizing-Code for more info
-var NAMED_GLOBALS = 1; // If 1, we use global variables for globals. Otherwise
+var NAMED_GLOBALS = 0; // If 1, we use global variables for globals. Otherwise
// they are referred to by a base plus an offset (called an indexed global),
// saving global variables but adding runtime overhead.