diff options
author | LCID Fire <lcid-fire@gmx.net> | 2012-03-05 13:59:53 +0100 |
---|---|---|
committer | LCID Fire <lcid-fire@gmx.net> | 2012-03-05 13:59:53 +0100 |
commit | 2292b1a9b4f42f74fb4c24053d926b99f1db78f4 (patch) | |
tree | d3eb6903477d05f6778ddfbcb80de445051a2ce5 | |
parent | 16116a352fe0b401a0ac76a9eebb812e862a1c0d (diff) |
Remove unnecessary accessing of stdout
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -711,7 +711,7 @@ try: if AUTODEBUG: if DEBUG: print >> sys.stderr, 'emcc: autodebug' - execute(['python', shared.AUTODEBUGGER, final, final + '.ad.ll'])[0] + execute(['python', shared.AUTODEBUGGER, final, final + '.ad.ll']) final += '.ad.ll' if DEBUG: save_intermediate('autodebug', 'll') |