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: "
86 outs() << "Checking to see if these passes crash: "
323 std::vector<std::string> Passes;
324 Passes.push_back("simplifycfg");
325 Passes.push_back("verify");
326 Module *New = BD.runPassesOn(M, Passes);
413 PassManager Passes;
414 Passes.add(createVerifierPass());
415 Passes.run(*M);
638 // Reduce the list of passes which causes the optimizer to crash...