Temporarily reverting 241765, 241768, and 241772 to unbreak the build bots.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241781 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Adrian Prantl
2015-07-09 02:14:49 +00:00
parent dc4dccabf3
commit 2efb9f7c3e
8 changed files with 27 additions and 102 deletions

View File

@ -56,7 +56,6 @@ public:
void printDynamicTable() override;
void printNeededLibraries() override;
void printProgramHeaders() override;
void printHashTable() override;
void printAttributes() override;
void printMipsPLTGOT() override;
@ -1120,18 +1119,6 @@ void ELFDumper<ELFT>::printProgramHeaders() {
}
}
template <typename ELFT>
void ELFDumper<ELFT>::printHashTable() {
DictScope D(W, "HashTable");
auto HT = Obj->getHashTable();
if (!HT)
return;
W.printNumber("Num Buckets", HT->nbucket);
W.printNumber("Num Chains", HT->nchain);
W.printList("Buckets", HT->buckets());
W.printList("Chains", HT->chains());
}
template <class ELFT>
void ELFDumper<ELFT>::printAttributes() {
W.startLine() << "Attributes not implemented.\n";