diff options
Diffstat (limited to 'llvm/test/Scripts/elf-dump')
-rwxr-xr-x | llvm/test/Scripts/elf-dump | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Scripts/elf-dump b/llvm/test/Scripts/elf-dump index d3fad347728..f116e3a0aa0 100755 --- a/llvm/test/Scripts/elf-dump +++ b/llvm/test/Scripts/elf-dump @@ -97,7 +97,7 @@ def dumpSymtab(f, section, strtab): for index in range(entries): f.seek(section.sh_offset + index * section.sh_entsize) - print " # Symbol %s" % common_dump.HexDump(index) + print " # Symbol %s" % index name = f.read32() print " (('st_name', %s)" % common_dump.HexDump(name), "# %r" % strtab[name] if not f.is64Bit: |