From b82800d00e78f6f818273eba484baeb7d0ca116a Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Fri, 26 Jun 2015 18:32:53 +0000 Subject: [PATCH] Delete dead code. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240807 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Object/ELF.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/llvm/Object/ELF.h b/include/llvm/Object/ELF.h index ae0e7376245..a9bee0ac77c 100644 --- a/include/llvm/Object/ELF.h +++ b/include/llvm/Object/ELF.h @@ -304,7 +304,6 @@ public: const T *getEntry(uint32_t Section, uint32_t Entry) const; template 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 getSymbolVersion(const Elf_Shdr *section, @@ -934,12 +933,6 @@ ELFFile::getSection(uint32_t index) const { + (index * Header->e_shentsize)); } -template -const char *ELFFile::getString(uint32_t section, - ELF::Elf32_Word offset) const { - return getString(getSection(section), offset); -} - template const char *ELFFile::getString(const Elf_Shdr *section, ELF::Elf32_Word offset) const { -- 2.34.1