Home | History | Annotate | Download | only in bugpoint

Lines Matching defs:Error

57                       std::string &Error) override;
64 std::string &Error) {
77 errs() << BD.getToolName() << ": Error reading bitcode file '"
115 std::string &Error) override {
185 std::string &Error) override {
258 std::string &Error) override {
367 std::string &Error) override {
437 std::string &Error) {
480 ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs, Error);
481 if (!Error.empty())
503 ReduceCrashingFunctions(BD, TestFn).reduceList(Functions, Error);
521 ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks, Error);
539 ReduceCrashingInstructions(BD, TestFn).reduceList(Insts, Error);
636 std::string Error;
639 ReducePassList(*this).reduceList(PassesToRun, Error);
640 assert(Error.empty());
648 bool Success = DebugACrash(*this, TestForOptimizerCrash, Error);
649 assert(Error.empty());
654 std::string Error;
655 BD.compileProgram(M, &Error);
656 if (!Error.empty()) {
667 bool BugDriver::debugCodeGeneratorCrash(std::string &Error) {
670 return DebugACrash(*this, TestForCodeGenCrash, Error);