Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp4921 Expected<ArrayRef<Elf_Versym>> VerTableOrErr = in printVersionSymbolSection() local
4924 if (!VerTableOrErr) { in printVersionSymbolSection()
4925 this->reportUniqueWarning(VerTableOrErr.takeError()); in printVersionSymbolSection()
4936 ArrayRef<Elf_Versym> VerTable = *VerTableOrErr; in printVersionSymbolSection()
7343 Expected<ArrayRef<Elf_Versym>> VerTableOrErr = in printVersionSymbolSection() local
7345 if (!VerTableOrErr) { in printVersionSymbolSection()
7346 this->reportUniqueWarning(VerTableOrErr.takeError()); in printVersionSymbolSection()
7350 if (StrTable.empty() || Syms.empty() || Syms.size() != VerTableOrErr->size()) in printVersionSymbolSection()
7356 W.printNumber("Version", (*VerTableOrErr)[I].vs_index & VERSYM_VERSION); in printVersionSymbolSection()