Home | History | Annotate | Download | only in bugpoint

Lines Matching defs:Error

35   AbsTolerance("abs-tolerance", cl::desc("Absolute error tolerated"),
38 RelTolerance("rel-tolerance", cl::desc("Relative error tolerated"),
258 // If there was an error creating the selected interpreter, quit with error.
263 /// setting Error if an error occurs. This is used for code generation
266 void BugDriver::compileProgram(Module *M, std::string *Error) const {
273 errs() << ToolName << ": Error making unique filename: " << EC.message()
278 errs() << ToolName << ": Error emitting bitcode to file '" << BitcodeFile
287 Interpreter->compileProgram(BitcodeFile.str(), Error, Timeout, MemoryLimit);
300 std::string *Error) const {
311 errs() << ToolName << ": Error making unique filename: "
318 errs() << ToolName << ": Error emitting bitcode to file '"
336 errs() << ToolName << ": Error making unique filename: "
348 Error, AdditionalLinkerArgs, SharedObjs,
350 if (!Error->empty())
381 std::string *Error) const {
382 return executeProgram(Program, OutputFile, "", "", SafeInterpreter, Error);
386 std::string &Error) {
392 Error);
393 if (!Error.empty())
398 AdditionalLinkerArgs, Error);
399 if (!Error.empty())
416 std::string Error;
417 compileProgram(Program, &Error);
418 if (!Error.empty())
421 ReferenceOutputFile = executeProgramSafely(Program, Filename, &Error);
422 if (!Error.empty()) {
423 errs() << Error;
428 << " error some other way.\n";
452 std::string Error;
456 AbsTolerance, RelTolerance, &Error)) {
458 errs() << "While diffing output: " << Error << '\n';