forked from OSchip/llvm-project
[llvm-readelf] - Do no print an empty symbol version as "<corrupt>"
It is discussed here https://reviews.llvm.org/D71118#inline-643172 Currently when a version is empty, llvm-readelf prints: "000: 0 (*local*) 2 (<corrupt>)" But GNU readelf does not treat empty section as corrupt. There is no sense in having empty versions anyways it seems, but this change is for consistency with GNU. Differential revision: https://reviews.llvm.org/D71243
This commit is contained in:
parent
21bc895866
commit
445c3fdd2a
|
@ -10,7 +10,7 @@
|
|||
|
||||
# GNU-VERNEED-NAME: Version symbols section '.gnu.version' contains 2 entries:
|
||||
# GNU-VERNEED-NAME-NEXT: Addr: 0000000000200210 Offset: 0x000040 Link: 5 (.dynsym)
|
||||
# GNU-VERNEED-NAME-NEXT: 000: 0 (*local*) 2 (<corrupt>)
|
||||
# GNU-VERNEED-NAME-NEXT: 000: 0 (*local*) 2 ()
|
||||
|
||||
# GNU-VERNEED-NAME: Version needs section '.gnu.version_r' contains 1 entries:
|
||||
# GNU-VERNEED-NAME-NEXT: Addr: 0000000000000000 Offset: 0x000044 Link: 6 (.dynstr)
|
||||
|
|
|
@ -4133,7 +4133,7 @@ void GNUStyle<ELFT>::printVersionSymbolSection(const ELFFile<ELFT> *Obj,
|
|||
bool IsDefault;
|
||||
Expected<StringRef> NameOrErr =
|
||||
this->dumper()->getSymbolVersionByIndex(Ndx, IsDefault);
|
||||
if (!NameOrErr || NameOrErr->empty()) {
|
||||
if (!NameOrErr) {
|
||||
if (!NameOrErr) {
|
||||
unsigned SecNdx = Sec - &cantFail(Obj->sections()).front();
|
||||
this->reportUniqueWarning(createError(
|
||||
|
|
Loading…
Reference in New Issue