Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp2086 auto *OldSec = It->get(); in updateSection() local
2087 if (!OldSec->hasContents()) in updateSection()
2093 if (Data.size() > OldSec->Size && OldSec->ParentSegment) in updateSection()
2097 Data.size(), Name.str().c_str(), OldSec->Size); in updateSection()
2099 if (!OldSec->ParentSegment) { in updateSection()
2100 *It = std::make_unique<OwnedDataSection>(*OldSec, Data); in updateSection()
2103 OldSec->Size = Data.size(); in updateSection()
2104 UpdatedSections[OldSec] = Data; in updateSection()