Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp688 Expected<typename ELFFile<ELFT>::Elf_Rela_Range> Relas = EF.relas(*RelaSec); in decodeBBAddrMapImpl() local
689 if (!Relas) in decodeBBAddrMapImpl()
692 toString(Relas.takeError())); in decodeBBAddrMapImpl()
693 for (typename ELFFile<ELFT>::Elf_Rela Rela : *Relas) in decodeBBAddrMapImpl()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp1866 Expected<typename ELFFile<ELFT>::Elf_Rela_Range> Relas = in readSections() local
1868 if (!Relas) in readSections()
1869 return Relas.takeError(); in readSections()
1871 if (Error Err = initRelocations(RelSec, *Relas)) in readSections()