diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-30 09:52:44 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-03 15:31:04 -0700 |
commit | 650a1d7857ea0dc7a373a54f75d011d34f3103c3 (patch) | |
tree | 9bfeeb16079f9e534970cebe4c68d943f334b81c /emcc | |
parent | 2c44a12bc755e4b59619a18027ab5b1a0752e0f1 (diff) |
finalize floats during relocation in side modules
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1597,7 +1597,7 @@ try: if closure and shared.Settings.ASM_JS: js_optimizer_queue += ['closure'] - js_optimizer_queue += ['last'] + if not shared.Settings.SIDE_MODULE: js_optimizer_queue += ['last'] # side modules are not finalized until after relocation flush_js_optimizer_queue() |