Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:Passes

51     // doTest - Return true iff running the "removed" passes succeeds, and
52 // running the "Kept" passes fail when run on the output of the "removed"
53 // passes. If we return true, we update the current module of bugpoint.
68 outs() << "Checking to see if these passes crash: "
84 outs() << "Checking to see if these passes crash: "
321 std::vector<std::string> Passes;
322 Passes.push_back("simplifycfg");
323 Passes.push_back("verify");
324 Module *New = BD.runPassesOn(M, Passes);
411 PassManager Passes;
412 Passes.add(createVerifierPass());
413 Passes.add(createDebugInfoVerifierPass());
414 Passes.run(*M);
637 // Reduce the list of passes which causes the optimizer to crash...