[ELF] Rename an historical leftover, `Chunk` is now `InputSection`.

llvm-svn: 287297
This commit is contained in:
Davide Italiano 2016-11-18 02:23:48 +00:00
parent 44665e7bc5
commit 2e8b2a70ab
1 changed files with 1 additions and 1 deletions

View File

@ -542,7 +542,7 @@ template <class ELFT> void OutputSection<ELFT>::writeTo(uint8_t *Buf) {
ArrayRef<uint8_t> Filler = Script<ELFT>::X->getFiller(this->Name);
if (!Filler.empty())
fill(Buf, this->Size, Filler);
auto Fn = [=](InputSection<ELFT> *C) { C->writeTo(Buf); };
auto Fn = [=](InputSection<ELFT> *IS) { IS->writeTo(Buf); };
if (Config->Threads)
parallel_for_each(Sections.begin(), Sections.end(), Fn);
else