From 29e8d343e48a524eaaff733653059bbc1862e980 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Thu, 13 Aug 2015 17:35:13 +0000 Subject: [PATCH] Rename addSectionChunk to addChunk now that it can handle any Chunk. llvm-svn: 244919 --- lld/ELF/Writer.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp index c2662e59df03..42c751d88afe 100644 --- a/lld/ELF/Writer.cpp +++ b/lld/ELF/Writer.cpp @@ -45,7 +45,7 @@ public: } void setVA(uintX_t); void setFileOffset(uintX_t); - void addSectionChunk(SectionChunk *C); + void addChunk(Chunk *C); std::vector &getChunks() { return Chunks; } void writeHeaderTo(Elf_Shdr *SHdr); StringRef getName() { return Name; } @@ -128,8 +128,7 @@ template void OutputSection::setFileOffset(uintX_t Off) { Header.sh_offset = Off; } -template -void OutputSection::addSectionChunk(SectionChunk *C) { +template void OutputSection::addChunk(Chunk *C) { Chunks.push_back(C); uintX_t Off = Header.sh_size; Off = RoundUpToAlignment(Off, C->getAlign()); @@ -185,7 +184,7 @@ template void Writer::createSections() { OutputSection(Key.Name, Key.sh_type, Key.sh_flags); OutputSections.push_back(Sec); } - Sec->addSectionChunk(C); + Sec->addChunk(C); } } }