diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-26 04:28:45 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-26 04:28:45 +0000 |
commit | bee148a1856c767a5544115e3bb523f25452a806 (patch) | |
tree | c9f658e6cc9eabd1e887b45ef373dd19bbb863bb /llvm/test/Scripts | |
parent | c1be2306e67fd5bea70cb04f91d1095de963a24b (diff) | |
download | bcm5719-llvm-bee148a1856c767a5544115e3bb523f25452a806.tar.gz bcm5719-llvm-bee148a1856c767a5544115e3bb523f25452a806.zip |
llvm-mc: Fix tests for python variations in int printing, sigh.
llvm-svn: 80069
Diffstat (limited to 'llvm/test/Scripts')
-rwxr-xr-x | llvm/test/Scripts/macho-dump | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Scripts/macho-dump b/llvm/test/Scripts/macho-dump index 665399d06dd..800015ec825 100755 --- a/llvm/test/Scripts/macho-dump +++ b/llvm/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) |