ELF2: Remove dead code.

llvm-svn: 243231
This commit is contained in:
Rui Ueyama 2015-07-26 00:50:13 +00:00
parent 424848cabe
commit 179cd7b82a
1 changed files with 0 additions and 5 deletions

View File

@ -31,14 +31,9 @@ public:
// Returns the size of the section in the output file.
uint64_t getSize() { return Header.sh_size; }
// Set offset into the string table storing this section name.
// Used only when the name is longer than 8 bytes.
void setStringTableOff(uint32_t V) { StringTableOff = V; }
private:
StringRef Name;
llvm::ELF::Elf64_Shdr Header;
uint32_t StringTableOff = 0;
std::vector<Chunk *> Chunks;
};