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

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 00:05:07 PDT 2025


https://github.com/arsenm created https://github.com/llvm/llvm-project/pull/133686

Previously it printed a shorter sequence of dashes, which were shorter
than most of the printed pass descriptions. It is much shorter than
the printed names after fea6b388055284f37852e615fbf5b40a3ba34249.
Make this look more consistent by filling a standard terminal width.

>From cb005c4a6a734a89082243c5ecca8e701979b8b0 Mon Sep 17 00:00:00 2001
From: Matt Arsenault <Matthew.Arsenault at amd.com>
Date: Mon, 31 Mar 2025 14:02:19 +0700
Subject: [PATCH] llvm-reduce: Use 80 dashes for section separator in status
 printing

Previously it printed a shorter sequence of dashes, which were shorter
than most of the printed pass descriptions. It is much shorter than
the printed names after fea6b388055284f37852e615fbf5b40a3ba34249.
Make this look more consistent by filling a standard terminal width.
---
 llvm/tools/llvm-reduce/deltas/Delta.cpp | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

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