Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp2128 auto *OldSec = It->get(); in updateSection() local
2129 if (!OldSec->hasContents()) in updateSection()
2135 if (Data.size() > OldSec->Size && OldSec->ParentSegment) in updateSection()
2139 Data.size(), Name.str().c_str(), OldSec->Size); in updateSection()
2141 if (!OldSec->ParentSegment) { in updateSection()
2142 *It = std::make_unique<OwnedDataSection>(*OldSec, Data); in updateSection()
2145 OldSec->Size = Data.size(); in updateSection()
2146 UpdatedSections[OldSec] = Data; in updateSection()