summaryrefslogtreecommitdiff
path: root/test/Scripts
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-08-04 13:39:15 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-08-04 13:39:15 +0000
commit014180d387a875f7e04fd3532eab24dd0794db08 (patch)
treed9148559b51f03ac53567b7236189e4ebf10e546 /test/Scripts
parentbbf9c4a14edbdbc384a452377d60bad8f6d8a78e (diff)
downloadllvm-014180d387a875f7e04fd3532eab24dd0794db08.tar.gz
llvm-014180d387a875f7e04fd3532eab24dd0794db08.tar.bz2
llvm-014180d387a875f7e04fd3532eab24dd0794db08.tar.xz
Don't print a counter in hex.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136869 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Scripts')
-rwxr-xr-xtest/Scripts/elf-dump2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Scripts/elf-dump b/test/Scripts/elf-dump
index 003a4ef79a..9794bfd9d8 100755
--- a/test/Scripts/elf-dump
+++ b/test/Scripts/elf-dump
@@ -205,7 +205,7 @@ def dumpELF(path, opts):
print "('_sections', ["
for index in range(e_shnum):
- print " # Section %s" % common_dump.HexDump(index)
+ print " # Section %s" % index
sections[index].dump(shstrtab, f, strtab, opts.dumpSectionData)
print "])"