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(
63
63
unsigned NumJobs = 1 ;
64
64
#endif
65
65
66
+ static StringLiteral SeparatorLine =
67
+ " --------------------------------------------------------------------------"
68
+ " ------\n " ;
69
+
66
70
// / Splits Chunks in half and prints them.
67
71
// / If unable to split (when chunk size is 1) returns false.
68
72
static bool increaseGranularity (std::vector<Chunk> &Chunks) {
@@ -223,7 +227,7 @@ void llvm::runDeltaPass(TestRunner &Test, const DeltaPass &Pass) {
223
227
if (!Targets) {
224
228
if (Verbose)
225
229
errs () << " \n Nothing to reduce\n " ;
226
- errs () << " ---------------------------- \n " ;
230
+ errs () << SeparatorLine ;
227
231
return ;
228
232
}
229
233
@@ -359,5 +363,5 @@ void llvm::runDeltaPass(TestRunner &Test, const DeltaPass &Pass) {
359
363
}
360
364
if (Verbose)
361
365
errs () << " Couldn't increase anymore.\n " ;
362
- errs () << " ---------------------------- \n " ;
366
+ errs () << SeparatorLine ;
363
367
}
You can’t perform that action at this time.
0 commit comments