Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/include/llvm/Object/
DELF.h461 auto IndexOrErr = getSectionIndex(Sym, Symbols, ShndxTable); in getSection() local
462 if (!IndexOrErr) in getSection()
463 return IndexOrErr.takeError(); in getSection()
464 uint32_t Index = *IndexOrErr; in getSection()
/openbsd/src/gnu/llvm/llvm/tools/llvm-readobj/
DELFDumper.cpp3810 Expected<uint32_t> IndexOrErr = in getSymbolSectionNdx() local
3812 if (!IndexOrErr) { in getSymbolSectionNdx()
3816 this->reportUniqueWarning(IndexOrErr.takeError()); in getSymbolSectionNdx()
3819 return to_string(format_decimal(*IndexOrErr, 3)); in getSymbolSectionNdx()