mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
print st_type with the correct number of bits.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136875 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -107,7 +107,7 @@ def dumpSymtab(f, section, strtab):
|
||||
st_bind = (st_info >> 4, 4)
|
||||
st_type = (st_info & 0xf, 4)
|
||||
print " ('st_bind', %s)" % common_dump.HexDump(st_bind[0], st_bind[1])
|
||||
print " ('st_type', %s)" % common_dump.HexDump(st_type[0], 32)
|
||||
print " ('st_type', %s)" % common_dump.HexDump(st_type[0], st_type[1])
|
||||
print " ('st_other', %s)" % common_dump.HexDump(f.read8())
|
||||
print " ('st_shndx', %s)" % common_dump.HexDump(f.read16())
|
||||
if f.is64Bit:
|
||||
|
Reference in New Issue
Block a user