Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lld/COFF/
HDSymbolTable.cpp478 bool wasInserted; in addUndefined() local
479 std::tie(s, wasInserted) = insert(name, f); in addUndefined()
480 if (wasInserted || (s->isLazy() && isWeakAlias)) { in addUndefined()
492 bool wasInserted; in addLazyArchive() local
493 std::tie(s, wasInserted) = insert(name); in addLazyArchive()
494 if (wasInserted) { in addLazyArchive()
507 bool wasInserted; in addLazyObject() local
508 std::tie(s, wasInserted) = insert(n, f); in addLazyObject()
509 if (wasInserted) { in addLazyObject()
589 bool wasInserted; in addAbsolute() local
[all …]
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
HDInputFiles.cpp1266 bool wasInserted; in parse() local
1267 std::tie(it, wasInserted) = symtab->soNames.try_emplace(soName, this); in parse()
1274 if (!wasInserted) in parse()