Home | History | Annotate | Download | only in gold

Lines Matching refs:EC

410     std::error_code EC = BDI->getError();
411 if (EC == BitcodeError::InvalidBitcodeSignature)
480 if (std::error_code EC = BufferOrErr.getError()) {
481 message(LDPL_ERROR, EC.message().c_str());
491 std::error_code EC = ObjOrErr.getError();
492 if (EC == object::object_error::invalid_file_type ||
493 EC == object::object_error::bitcode_section_not_found)
498 if (EC) {
500 EC.message().c_str());
679 if (std::error_code EC = ObjOrErr.getError())
682 EC.message().c_str());
698 if (std::error_code EC = ObjOrErr.getError())
700 EC.message().c_str());
831 std::error_code EC;
832 raw_fd_ostream OS(Path, EC, sys::fs::OpenFlags::F_None);
833 if (EC)
1039 std::error_code EC =
1041 if (EC)
1043 EC.message().c_str());
1048 std::error_code EC =
1050 if (EC)
1051 message(LDPL_FATAL, "Could not open file: %s", EC.message().c_str());
1296 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath))
1298 << "': " << EC.message() << '\n';
1416 std::error_code EC;
1420 raw_fd_ostream OS((Twine(NewModulePath) + ".thinlto.bc").str(), EC,
1422 if (EC)
1424 NewModulePath.c_str(), EC.message().c_str());
1433 if ((EC = EmitImportsFiles(F.name,
1437 NewModulePath.c_str(), EC.message().c_str());
1447 std::error_code EC;
1448 raw_fd_ostream OS(output_name + ".thinlto.bc", EC,
1450 if (EC)
1452 output_name.data(), EC.message().c_str());
1529 std::error_code EC;
1530 raw_fd_ostream ApiFile("apifile.txt", EC, sys::fs::F_None);
1531 if (EC)
1533 EC.message().c_str());
1544 std::error_code EC = sys::fs::remove(output_name);
1545 if (EC)
1547 EC.message().c_str());
1557 std::error_code EC = sys::fs::remove(Name);
1558 if (EC)
1560 EC.message().c_str());