summaryrefslogtreecommitdiff
path: root/test/Scripts
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-08-26 04:28:45 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-08-26 04:28:45 +0000
commit573e53627e3e44cce60e8c0443a34cd43c41e316 (patch)
treee2220afb67e6f3d03240bf89046b713c8b54df20 /test/Scripts
parente1f515ea59df5cb989c371604bba2271e6f3ee0d (diff)
downloadllvm-573e53627e3e44cce60e8c0443a34cd43c41e316.tar.gz
llvm-573e53627e3e44cce60e8c0443a34cd43c41e316.tar.bz2
llvm-573e53627e3e44cce60e8c0443a34cd43c41e316.tar.xz
llvm-mc: Fix tests for python variations in int printing, sigh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80069 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Scripts')
-rwxr-xr-xtest/Scripts/macho-dump2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Scripts/macho-dump b/test/Scripts/macho-dump
index 665399d06d..800015ec82 100755
--- a/test/Scripts/macho-dump
+++ b/test/Scripts/macho-dump
@@ -198,7 +198,7 @@ def dumpDysymtabCommand(f, opts):
print " ('_indirect_symbols', ["
for i in range(nindirectsyms):
print " # Indirect Symbol %r" % i
- print " (('symbol_index', %r),)," % f.read32()
+ print " (('symbol_index', %#x),)," % f.read32()
print " ])"
f.seek(prev_pos)