Home
last modified time | relevance | path

Searched refs:SectionsToWrite (Results 1 – 1 of 1) sorted by relevance

/src/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp2687 SmallVector<const SectionBase *, 30> SectionsToWrite; in write() local
2690 SectionsToWrite.push_back(&Sec); in write()
2693 if (SectionsToWrite.empty()) in write()
2696 llvm::stable_sort(SectionsToWrite, in write()
2701 assert(SectionsToWrite.front()->Offset == 0); in write()
2703 for (size_t i = 0; i != SectionsToWrite.size(); ++i) { in write()
2704 const SectionBase &Sec = *SectionsToWrite[i]; in write()
2709 uint64_t PadOffset = (i < SectionsToWrite.size() - 1) in write()
2710 ? SectionsToWrite[i + 1]->Offset in write()