Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/
H A DAArch64ErrataFix.cpp548 auto relIt = llvm::find_if(isec->relocs(), [=](const Relocation &r) { in implementPatch() local
551 if (relIt != isec->relocs().end() && in implementPatch()
552 (relIt->type == R_AARCH64_JUMP26 || relIt->expr == R_RELAX_TLS_IE_TO_LE)) in implementPatch()
565 if (relIt != isec->relocs().end()) { in implementPatch()
566 ps->addReloc({relIt->expr, relIt->type, 0, relIt->addend, relIt->sym}); in implementPatch()
567 *relIt = makeRelToPatch(patcheeOffset, ps->patchSym); in implementPatch()
H A DARMErrataFix.cpp284 auto relIt = llvm::find_if(isec->relocs(), [=](const Relocation &r) { in scanCortexA8Errata657417() local
289 if (relIt != isec->relocs().end()) in scanCortexA8Errata657417()
290 scanRes.rel = &(*relIt); in scanCortexA8Errata657417()