[llvm] [nfc][profcheck] fix cl::desc typo (PR #151979)

Mircea Trofin via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 4 07:51:20 PDT 2025


https://github.com/mtrofin created https://github.com/llvm/llvm-project/pull/151979

None

>From a548dfdad8e89441638b7141bbc47f056b3855c6 Mon Sep 17 00:00:00 2001
From: Mircea Trofin <mtrofin at google.com>
Date: Mon, 4 Aug 2025 07:50:29 -0700
Subject: [PATCH] [nfc][profcheck] fix cl::desc typo

---
 llvm/tools/opt/optdriver.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/llvm/tools/opt/optdriver.cpp b/llvm/tools/opt/optdriver.cpp
index 4a3b05887562f..a185ea464decc 100644
--- a/llvm/tools/opt/optdriver.cpp
+++ b/llvm/tools/opt/optdriver.cpp
@@ -224,7 +224,8 @@ static cl::opt<bool> EnableProfileVerification(
 #else
     cl::init(false),
 #endif
-    cl::desc("Start the pipeline with prof-inject and end it with prof-check"));
+    cl::desc(
+        "Start the pipeline with prof-inject and end it with prof-verify"));
 
 static cl::opt<std::string> ClDataLayout("data-layout",
                                          cl::desc("data layout string to use"),



More information about the llvm-commits mailing list