Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/Object/
DIRObjectFile.cpp116 Expected<std::vector<BitcodeModule>> BMsOrErr = in create() local
118 if (!BMsOrErr) in create()
119 return BMsOrErr.takeError(); in create()
122 for (auto BM : *BMsOrErr) { in create()
/openbsd/src/gnu/llvm/llvm/lib/LTO/
DLTOBackend.cpp671 Expected<std::vector<BitcodeModule>> BMsOrErr = getBitcodeModuleList(MBRef); in findThinLTOModule() local
672 if (!BMsOrErr) in findThinLTOModule()
673 return BMsOrErr.takeError(); in findThinLTOModule()
677 if (const BitcodeModule *Bm = lto::findThinLTOModule(*BMsOrErr)) in findThinLTOModule()
/openbsd/src/gnu/llvm/clang/lib/CodeGen/
DCodeGenAction.cpp1123 Expected<std::vector<BitcodeModule>> BMsOrErr = getBitcodeModuleList(MBRef); in loadModule() local
1124 if (!BMsOrErr) in loadModule()
1125 return DiagErrors(BMsOrErr.takeError()); in loadModule()
1126 BitcodeModule *Bm = llvm::lto::findThinLTOModule(*BMsOrErr); in loadModule()