aboutsummaryrefslogtreecommitdiff
path: root/src/compiler.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-03-03 15:23:25 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-03-03 15:23:25 -0800
commit8cc0273ae706c88e403ddacefbe795bb9244ab1d (patch)
tree8adfb718079bbef19dca888377381585d01a246d /src/compiler.js
parent3bd0991eb432b0c7ada786a008abf9bf545405a0 (diff)
remove no-longer-needed INIT_STACK
Diffstat (limited to 'src/compiler.js')
-rw-r--r--src/compiler.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.js b/src/compiler.js
index b40891a5..1cd09c30 100644
--- a/src/compiler.js
+++ b/src/compiler.js
@@ -179,7 +179,7 @@ assert(!(!NAMED_GLOBALS && BUILD_AS_SHARED_LIB)); // shared libraries must have
// Output some info and warnings based on settings
if (phase == 'pre') {
- if (!MICRO_OPTS || !RELOOP || ASSERTIONS || CHECK_SIGNS || CHECK_OVERFLOWS || INIT_STACK || INIT_HEAP ||
+ if (!MICRO_OPTS || !RELOOP || ASSERTIONS || CHECK_SIGNS || CHECK_OVERFLOWS || INIT_HEAP ||
!SKIP_STACK_IN_SMALL || SAFE_HEAP || !DISABLE_EXCEPTION_CATCHING) {
print('// Note: Some Emscripten settings will significantly limit the speed of the generated code.');
} else {