From 573e53627e3e44cce60e8c0443a34cd43c41e316 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 26 Aug 2009 04:28:45 +0000 Subject: 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 --- test/Scripts/macho-dump | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/Scripts') diff --git a/test/Scripts/macho-dump b/test/Scripts/macho-dump index 665399d..800015e 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) -- cgit v1.1