[llvm] 32efbb7 - [nfc][profcheck] fix cl::desc typo (#151979)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 4 07:54:54 PDT 2025
Author: Mircea Trofin
Date: 2025-08-04T07:54:51-07:00
New Revision: 32efbb707ecaa4d55ad322c2b85393603e440541
URL: https://github.com/llvm/llvm-project/commit/32efbb707ecaa4d55ad322c2b85393603e440541
DIFF: https://github.com/llvm/llvm-project/commit/32efbb707ecaa4d55ad322c2b85393603e440541.diff
LOG: [nfc][profcheck] fix cl::desc typo (#151979)
The pass is `prof-verify`, not `prof-check`. (Meanwhile, `profcheck` is an informal handle we could use for the whole feature in the [RFC](https://discourse.llvm.org/t/rfc-profile-information-propagation-unittesting/73595))
Added:
Modified:
llvm/tools/opt/optdriver.cpp
Removed:
################################################################################
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