diff options
Diffstat (limited to 'lld/ELF/InputSection.cpp')
| -rw-r--r-- | lld/ELF/InputSection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp index 2adfc0d776f..ef941bc40d4 100644 --- a/lld/ELF/InputSection.cpp +++ b/lld/ELF/InputSection.cpp @@ -194,7 +194,7 @@ OutputSection *SectionBase::getOutputSection() { } // Uncompress section contents. Note that this function is called -// from parallel_for_each, so it must be thread-safe. +// from parallelForEach, so it must be thread-safe. void InputSectionBase::uncompress() { Decompressor Dec = check(Decompressor::create(Name, toStringRef(Data), Config->IsLE, Config->Is64)); @@ -920,7 +920,7 @@ MergeInputSection::MergeInputSection(ObjFile<ELFT> *F, // that need to be linked. This is responsible to split section contents // into small chunks for further processing. // -// Note that this function is called from parallel_for_each. This must be +// Note that this function is called from parallelForEach. This must be // thread-safe (i.e. no memory allocation from the pools). void MergeInputSection::splitIntoPieces() { ArrayRef<uint8_t> Data = this->Data; |

