From: Simon Atanasyan Date: Sat, 2 Dec 2017 13:06:27 +0000 (+0000) Subject: [llvm-readobj] Delete unused method argument. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a502f2ce17616a842e58e69e38431ee14c33f08;p=llvm [llvm-readobj] Delete unused method argument. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@319615 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-readobj/ELFDumper.cpp b/tools/llvm-readobj/ELFDumper.cpp index cd107ec91ba..df01e265798 100644 --- a/tools/llvm-readobj/ELFDumper.cpp +++ b/tools/llvm-readobj/ELFDumper.cpp @@ -1930,7 +1930,7 @@ private: const GOTEntry *It); void printGlobalGotEntry(uint64_t GotAddr, const GOTEntry *BeginIt, const GOTEntry *It, const Elf_Sym *Sym, - StringRef StrTable, bool IsDynamic); + StringRef StrTable); void printPLTEntry(uint64_t PLTAddr, const GOTEntry *BeginIt, const GOTEntry *It, StringRef Purpose); void printPLTEntry(uint64_t PLTAddr, const GOTEntry *BeginIt, @@ -2044,8 +2044,8 @@ template void MipsGOTParser::parseGOT() { const Elf_Sym *GotDynSym = DynSymBegin + *DtGotSym; for (; It != GotGlobalEnd; ++It) { DictScope D(W, "Entry"); - printGlobalGotEntry(GOTShdr->sh_addr, GotBegin, It, GotDynSym++, StrTable, - true); + printGlobalGotEntry(GOTShdr->sh_addr, GotBegin, It, GotDynSym++, + StrTable); } } @@ -2137,9 +2137,11 @@ void MipsGOTParser::printGotEntry(uint64_t GotAddr, } template -void MipsGOTParser::printGlobalGotEntry( - uint64_t GotAddr, const GOTEntry *BeginIt, const GOTEntry *It, - const Elf_Sym *Sym, StringRef StrTable, bool IsDynamic) { +void MipsGOTParser::printGlobalGotEntry(uint64_t GotAddr, + const GOTEntry *BeginIt, + const GOTEntry *It, + const Elf_Sym *Sym, + StringRef StrTable) { printGotEntry(GotAddr, BeginIt, It); W.printHex("Value", Sym->st_value); @@ -2151,8 +2153,7 @@ void MipsGOTParser::printGlobalGotEntry( Dumper->getShndxTable(), SectionName, SectionIndex); W.printHex("Section", SectionName, SectionIndex); - std::string FullSymbolName = - Dumper->getFullSymbolName(Sym, StrTable, IsDynamic); + std::string FullSymbolName = Dumper->getFullSymbolName(Sym, StrTable, true); W.printNumber("Name", FullSymbolName, Sym->st_name); }