diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-11-13 21:08:45 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-11-13 21:08:45 -0800 |
commit | 49c2b8037c0b6bb04214b8ce1bd340aedc69d2dd (patch) | |
tree | 03e39186171c2187fc7b729a4770f230579e8623 /src | |
parent | 7af25eb2c86d1be7d0dacf3827184df6b9d1f493 (diff) |
fix compiler.js bug
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.js b/src/compiler.js index a6ca0bb7..6c729573 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -56,7 +56,7 @@ assert(!(USE_TYPED_ARRAYS === 2 && QUANTUM_SIZE !== 4), 'For USE_TYPED_ARRAYS == // Output some info and warnings based on settings -if (!OPTIMIZE || !RELOOP || ASSERTIONS || CHECK_SIGNS || CHECK_OVERFLOWS || CHECK_ROUNDINGS || INIT_STACK || INIT_HEAP || +if (!OPTIMIZE || !RELOOP || ASSERTIONS || CHECK_SIGNS || CHECK_OVERFLOWS || INIT_STACK || INIT_HEAP || !SKIP_STACK_IN_SMALL || SAFE_HEAP || AUTO_OPTIMIZE || PROFILE || !DISABLE_EXCEPTION_CATCHING) { print('// Note: Some Emscripten settings will significantly limit the speed of the generated code.'); } |