Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
H A DObject.cpp95 DenseSet<ssize_t> RemovedSections; in removeSections() local
96 llvm::erase_if(Sections, [ToRemove, &RemovedSections](const Section &Sec) { in removeSections()
99 RemovedSections.insert(Sec.UniqueId); in removeSections()
105 Symbols, [&RemovedSections, &AssociatedSections](const Symbol &Sym) { in removeSections()
110 if (RemovedSections.count(Sym.AssociativeComdatTargetSectionId) == 1) in removeSections()
112 return RemovedSections.contains(Sym.TargetSectionId); in removeSections()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DObject.h1018 std::vector<SecPtr> RemovedSections; variable
1074 SectionTableRef removedSections() { return SectionTableRef(RemovedSections); } in removedSections()
H A DObject.cpp2154 std::move(Iter, Sections.end(), std::back_inserter(RemovedSections)); in removeSections()