diff options
author | Roman Divacky <rdivacky@freebsd.org> | 2010-12-20 20:49:43 +0000 |
---|---|---|
committer | Roman Divacky <rdivacky@freebsd.org> | 2010-12-20 20:49:43 +0000 |
commit | e15f591de41f1a851425110eaf1814bcfa3ffb7d (patch) | |
tree | ba683b07a35084166216d151ad4e0a07d069130b /llvm/test/Scripts | |
parent | af67cecd47690d70be488673a02de533e044a521 (diff) | |
download | bcm5719-llvm-e15f591de41f1a851425110eaf1814bcfa3ffb7d.tar.gz bcm5719-llvm-e15f591de41f1a851425110eaf1814bcfa3ffb7d.zip |
Print all 64bits for st_value and st_size. Adjust tests accordingly.
llvm-svn: 122263
Diffstat (limited to 'llvm/test/Scripts')
-rwxr-xr-x | llvm/test/Scripts/elf-dump | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Scripts/elf-dump b/llvm/test/Scripts/elf-dump index 2d470c8c8f7..76cdbf91c73 100755 --- a/llvm/test/Scripts/elf-dump +++ b/llvm/test/Scripts/elf-dump @@ -121,8 +121,8 @@ def dumpSymtab(f, section, strtab): print " ('st_other', %s)" % common_dump.HexDump(f.read8()) print " ('st_shndx', %s)" % common_dump.HexDump(f.read16()) if f.is64Bit: - print " ('st_value', %s)" % common_dump.HexDump(f.read64()) - print " ('st_size', %s)" % common_dump.HexDump(f.read64()) + print " ('st_value', %s)" % common_dump.HexDump(f.read64(), 64) + print " ('st_size', %s)" % common_dump.HexDump(f.read64(), 64) print " )," def dumpRel(f, section, dumprela = False): |