Searched refs:BMsOrErr (Results 1 – 3 of 3) sorted by relevance
116 Expected<std::vector<BitcodeModule>> BMsOrErr = in create() local118 if (!BMsOrErr) in create()119 return BMsOrErr.takeError(); in create()122 for (auto BM : *BMsOrErr) { in create()
671 Expected<std::vector<BitcodeModule>> BMsOrErr = getBitcodeModuleList(MBRef); in findThinLTOModule() local672 if (!BMsOrErr) in findThinLTOModule()673 return BMsOrErr.takeError(); in findThinLTOModule()677 if (const BitcodeModule *Bm = lto::findThinLTOModule(*BMsOrErr)) in findThinLTOModule()
1123 Expected<std::vector<BitcodeModule>> BMsOrErr = getBitcodeModuleList(MBRef); in loadModule() local1124 if (!BMsOrErr) in loadModule()1125 return DiagErrors(BMsOrErr.takeError()); in loadModule()1126 BitcodeModule *Bm = llvm::lto::findThinLTOModule(*BMsOrErr); in loadModule()