Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:Broken

64   // First, run the program with just the Suffix passes.  If it is still broken
97 // Next, see if the program is broken if we run the "prefix" passes first,
102 // If it is not broken with the kept passes, it's possible that the prefix
211 /// an error, return NULL. If not, return the merged module. The Broken argument
218 bool &Broken) {
233 Broken = BD.diffProgram(M1, "", "", false, &Error);
281 bool Broken = TestFn(BD, ToOptimize, ToNotOptimize, Error);
285 return Broken;
332 // has broken. If something broke, then we'll inform the user and stop
376 // If the program is not still broken, then loop extraction did something
703 bool Broken;
704 Module *New = TestMergedProgram(BD, Optimized, Safe, true, Error, Broken);
706 outs() << (Broken ? " nope.\n" : " yup.\n");
710 return Broken;