print st_shndx with the correct number of bits.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136880 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola
2011-08-04 15:50:13 +00:00
parent 8036586229
commit 251a2bbfb0
25 changed files with 82 additions and 82 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ def dumpSymtab(f, section, strtab):
print " ('st_bind', %s)" % common_dump.HexDump(st_bind[0], st_bind[1])
print " ('st_type', %s)" % common_dump.HexDump(st_type[0], st_type[1])
print " ('st_other', %s)" % common_dump.HexDump(f.read8(), 8)
print " ('st_shndx', %s)" % common_dump.HexDump(f.read16())
print " ('st_shndx', %s)" % common_dump.HexDump(f.read16(), 16)
if f.is64Bit:
print " ('st_value', %s)" % common_dump.HexDump(f.read64(), 64)
print " ('st_size', %s)" % common_dump.HexDump(f.read64(), 64)