Delete dead code. NFC.

llvm-svn: 240807
This commit is contained in:
Rafael Espindola 2015-06-26 18:32:53 +00:00
parent 7383562bc9
commit e7d47dc48e
1 changed files with 0 additions and 7 deletions

View File

@ -304,7 +304,6 @@ public:
const T *getEntry(uint32_t Section, uint32_t Entry) const;
template <typename T>
const T *getEntry(const Elf_Shdr *Section, uint32_t Entry) const;
const char *getString(uint32_t section, uint32_t offset) const;
const char *getString(const Elf_Shdr *section, uint32_t offset) const;
const char *getDynamicString(uintX_t Offset) const;
ErrorOr<StringRef> getSymbolVersion(const Elf_Shdr *section,
@ -934,12 +933,6 @@ ELFFile<ELFT>::getSection(uint32_t index) const {
+ (index * Header->e_shentsize));
}
template <class ELFT>
const char *ELFFile<ELFT>::getString(uint32_t section,
ELF::Elf32_Word offset) const {
return getString(getSection(section), offset);
}
template <class ELFT>
const char *ELFFile<ELFT>::getString(const Elf_Shdr *section,
ELF::Elf32_Word offset) const {