diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-24 13:24:30 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-24 13:24:30 -0700 |
commit | bab35f453ae0730cd598c4bd18fe6495695522f8 (patch) | |
tree | a1f26632d403998787a177d41fb72e6ae5c3cefd /emcc | |
parent | 9e0fc0e5cfc6c8601fb1dfcf73fb0e26fc5ae3af (diff) |
unify registerize and minify passes, since they must run in conjunction
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1553,7 +1553,7 @@ try: js_optimizer_queue += ['registerize'] if opt_level > 0: - if debug_level < 2 and shared.Settings.ASM_JS and shared.Settings.RELOOP: js_optimizer_queue += ['minifyGlobals'] + if debug_level < 2 and shared.Settings.ASM_JS: js_optimizer_queue = map(lambda p: p if p != 'registerize' else 'registerizeAndMinify', js_optimizer_queue) if debug_level == 0: js_optimizer_queue += ['minifyWhitespace'] if closure and shared.Settings.ASM_JS: |