summaryrefslogtreecommitdiff
path: root/test/Scripts
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-10-08 03:17:21 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-10-08 03:17:21 +0000
commit0de25f7b386c00e74a8ab11950e5b966fb67aa88 (patch)
tree30a5295c50d49e686e2a435dd7efcfde90b7df0f /test/Scripts
parent6ab219de7e8aa36aee266f111ac5e08ec8e4a16d (diff)
downloadllvm-0de25f7b386c00e74a8ab11950e5b966fb67aa88.tar.gz
llvm-0de25f7b386c00e74a8ab11950e5b966fb67aa88.tar.bz2
llvm-0de25f7b386c00e74a8ab11950e5b966fb67aa88.tar.xz
Fix Formatting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116038 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Scripts')
-rwxr-xr-xtest/Scripts/coff-dump.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Scripts/coff-dump.py b/test/Scripts/coff-dump.py
index a75cf6bede..36ec53932c 100755
--- a/test/Scripts/coff-dump.py
+++ b/test/Scripts/coff-dump.py
@@ -365,10 +365,10 @@ def read_value(expr):
raise RuntimeError("unexpected token %s" % repr(token))
- value = eval ()
+ value = eval()
try:
- input.next ()
+ input.next()
except StopIteration:
return value
raise RuntimeError("unexpected input at end of expression")