diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-02-26 17:29:24 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-02-26 17:29:24 -0800 |
commit | c207c8c67ca2f13437d589f22dc5d136ea7ac3f6 (patch) | |
tree | 48c7c55b0ddcdb254a0dd60aaaa25141812d2430 /src/compiler.js | |
parent | ce0eabbbec5184380d3c98feac5b523be7c06b78 (diff) |
remove I64_MODE, it is equal to 1 in USE_TYPED_ARRAYS 2 and only there
Diffstat (limited to 'src/compiler.js')
-rw-r--r-- | src/compiler.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/compiler.js b/src/compiler.js index d37bc68b..1876ee1c 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -138,7 +138,6 @@ EXPORTED_GLOBALS = set(EXPORTED_GLOBALS); // Settings sanity checks assert(!(USE_TYPED_ARRAYS === 2 && QUANTUM_SIZE !== 4), 'For USE_TYPED_ARRAYS == 2, must have normal QUANTUM_SIZE of 4'); -assert(!(USE_TYPED_ARRAYS !== 2 && I64_MODE === 1), 'i64 mode 1 is only supported with typed arrays mode 2'); // Output some info and warnings based on settings @@ -149,7 +148,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 (DOUBLE_MODE || I64_MODE || CORRECT_SIGNS || CORRECT_OVERFLOWS || CORRECT_ROUNDINGS) { +if (DOUBLE_MODE || CORRECT_SIGNS || CORRECT_OVERFLOWS || CORRECT_ROUNDINGS) { print('// Note: Some Emscripten settings may limit the speed of the generated code.'); } |