diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-24 10:55:37 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-24 10:55:37 -0800 |
commit | 4202310613cf8fa4c4c544fbc17aab55d8b6b37c (patch) | |
tree | e153ba07a028fdaa033beca69a0c75590fc244d7 | |
parent | a0ce0dce7d234ec0443849d5222e2dee800ab37f (diff) |
fix LEAVE_INPUTS_RAW in fastcomp
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1754,7 +1754,7 @@ try: if DEBUG: save_intermediate('autodebug', 'll') # Simplify bitcode after autodebug - if os.environ.get('EMCC_FAST_COMPILER') and AUTODEBUG: + if os.environ.get('EMCC_FAST_COMPILER') and (AUTODEBUG or LEAVE_INPUTS_RAW): shared.Building.llvm_opt(final, ['-pnacl-abi-simplify-preopt', '-pnacl-abi-simplify-postopt'], final + '.adsimp.bc') final += '.adsimp.bc' if DEBUG: save_intermediate('adsimp', 'bc') |