[llvm] f82283a - llvm-reduce: Use 80 dashes for section separator in status printing (#133686)

via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 04:06:41 PDT 2025


Author: Matt Arsenault
Date: 2025-03-31T18:06:37+07:00
New Revision: f82283a84ed897f06a1aaac028accbad0d5057c7

URL: https://github.com/llvm/llvm-project/commit/f82283a84ed897f06a1aaac028accbad0d5057c7
DIFF: https://github.com/llvm/llvm-project/commit/f82283a84ed897f06a1aaac028accbad0d5057c7.diff

LOG: llvm-reduce: Use 80 dashes for section separator in status printing (#133686)

Added: 
    

Modified: 
    llvm/tools/llvm-reduce/deltas/Delta.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/tools/llvm-reduce/deltas/Delta.cpp b/llvm/tools/llvm-reduce/deltas/Delta.cpp
index 5b9f0330f9c7e..d4106b0243aea 100644
--- a/llvm/tools/llvm-reduce/deltas/Delta.cpp
+++ b/llvm/tools/llvm-reduce/deltas/Delta.cpp
@@ -63,6 +63,10 @@ static cl::opt<unsigned> NumJobs(
 unsigned NumJobs = 1;
 #endif
 
+static StringLiteral SeparatorLine =
+    "--------------------------------------------------------------------------"
+    "------\n";
+
 /// Splits Chunks in half and prints them.
 /// If unable to split (when chunk size is 1) returns false.
 static bool increaseGranularity(std::vector<Chunk> &Chunks) {
@@ -223,7 +227,7 @@ void llvm::runDeltaPass(TestRunner &Test, const DeltaPass &Pass) {
   if (!Targets) {
     if (Verbose)
       errs() << "\nNothing to reduce\n";
-    errs() << "----------------------------\n";
+    errs() << SeparatorLine;
     return;
   }
 
@@ -359,5 +363,5 @@ void llvm::runDeltaPass(TestRunner &Test, const DeltaPass &Pass) {
   }
   if (Verbose)
     errs() << "Couldn't increase anymore.\n";
-  errs() << "----------------------------\n";
+  errs() << SeparatorLine;
 }


        


More information about the llvm-commits mailing list