Home | History | Annotate | Download | only in llvm-lto

Lines Matching refs:EC

167 static void error(std::error_code EC, const Twine &Prefix) {
168 if (EC)
169 error(Prefix + ": " + EC.message());
228 std::error_code EC;
230 raw_fd_ostream OS(OutputFilename + ".thinlto.bc", EC,
232 error(EC, "error opening the file '" + OutputFilename + ".thinlto.bc'");
369 std::error_code EC;
370 OSs.emplace_back(PartFilename, EC, sys::fs::F_None);
371 if (EC) {
373 << "': " << EC.message() << "\n";