diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-17 13:29:48 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-17 13:29:48 -0800 |
commit | 5a2bcaf0462768ac0ce03cf610e285c3b244cb7c (patch) | |
tree | 76848ad307b7631c52d26a34d9da7c437b9c81d5 /src/compiler.js | |
parent | 52f73412c5b077add97a2642a3876d721da9d77e (diff) |
note that I64_MODE and DOUBLE_MODE can slow you down
Diffstat (limited to 'src/compiler.js')
-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 2dea5797..33f0e1fb 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -152,7 +152,7 @@ if (!MICRO_OPTS || !RELOOP || ASSERTIONS || CHECK_SIGNS || CHECK_OVERFLOWS || IN print('// Note: For maximum-speed code, see "Optimizing Code" on the Emscripten wiki, https://github.com/kripken/emscripten/wiki/Optimizing-Code'); } -if (CORRECT_SIGNS || CORRECT_OVERFLOWS || CORRECT_ROUNDINGS) { +if (DOUBLE_MODE || I64_MODE || CORRECT_SIGNS || CORRECT_OVERFLOWS || CORRECT_ROUNDINGS) { print('// Note: Some Emscripten settings may limit the speed of the generated code.'); } |