aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLCID Fire <lcid-fire@gmx.net>2012-03-05 13:59:53 +0100
committerLCID Fire <lcid-fire@gmx.net>2012-03-05 13:59:53 +0100
commit2292b1a9b4f42f74fb4c24053d926b99f1db78f4 (patch)
treed3eb6903477d05f6778ddfbcb80de445051a2ce5
parent16116a352fe0b401a0ac76a9eebb812e862a1c0d (diff)
Remove unnecessary accessing of stdout
-rwxr-xr-xemcc2
1 files changed, 1 insertions, 1 deletions
diff --git a/emcc b/emcc
index c9f842c6..346b420a 100755
--- a/emcc
+++ b/emcc
@@ -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')