[llvm-readelf] - Do not report a misleading warning when there is no string table.
authorGeorgii Rymar <grimar@accesssoftek.com>
Thu, 2 Jul 2020 13:06:26 +0000 (16:06 +0300)
committerGeorgii Rymar <grimar@accesssoftek.com>
Fri, 3 Jul 2020 08:56:37 +0000 (11:56 +0300)
commit769af95e657dd7831e88a37fbb60f5cd2b24abdd
treefa38eb7aa6a847e0dd0f6c840ccc7944f003c398
parent64156347baa4452489ec1c0fab8eec48d1ffd168
[llvm-readelf] - Do not report a misleading warning when there is no string table.

This is a follow-up for D82955, which allows to continue dumping when a symbol table is broken.
When we are unable to get the string table and trying to print symbols,
the existent tool logic together with D82955 reports an error:

"st_name (0x??) is past the end of the string table of size 0x??"

Though, when there is no string table, this message becomes misleading and excessive.
It is easy to fix it though and that is what this patch does.

Differential revision: https://reviews.llvm.org/D83042
llvm/test/tools/llvm-readobj/ELF/symbols.test
llvm/tools/llvm-readobj/ELFDumper.cpp