File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
llvm/tools/llvm-reduce/deltas Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,10 @@ static cl::opt<unsigned> NumJobs(
6363unsigned NumJobs = 1 ;
6464#endif
6565
66+ static StringLiteral SeparatorLine =
67+ " --------------------------------------------------------------------------"
68+ " ------\n " ;
69+
6670// / Splits Chunks in half and prints them.
6771// / If unable to split (when chunk size is 1) returns false.
6872static bool increaseGranularity (std::vector<Chunk> &Chunks) {
@@ -223,7 +227,7 @@ void llvm::runDeltaPass(TestRunner &Test, const DeltaPass &Pass) {
223227 if (!Targets) {
224228 if (Verbose)
225229 errs () << " \n Nothing to reduce\n " ;
226- errs () << " ---------------------------- \n " ;
230+ errs () << SeparatorLine ;
227231 return ;
228232 }
229233
@@ -359,5 +363,5 @@ void llvm::runDeltaPass(TestRunner &Test, const DeltaPass &Pass) {
359363 }
360364 if (Verbose)
361365 errs () << " Couldn't increase anymore.\n " ;
362- errs () << " ---------------------------- \n " ;
366+ errs () << SeparatorLine ;
363367}
You can’t perform that action at this time.
0 commit comments