Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp645 std::pair<StringMap<MCSectionELF *>::iterator, bool> EntryNewPair; in getELFSection() local
660 EntryNewPair = ELFUniquingMap.try_emplace(UniqueMapKey); in getELFSection()
665 EntryNewPair = ELFUniquingMap.try_emplace(UniqueMapKey); in getELFSection()
669 EntryNewPair = ELFUniquingMap.try_emplace(UniqueMapKey); in getELFSection()
672 if (!EntryNewPair.second) in getELFSection()
673 return EntryNewPair.first->second; in getELFSection()
675 StringRef CachedName = EntryNewPair.first->getKey().take_front(SectionLen); in getELFSection()
680 EntryNewPair.first->second = Result; in getELFSection()