Skip to content

Commit 32efbb7

Browse files
authored
[nfc][profcheck] fix cl::desc typo (llvm#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))
1 parent 0398ad4 commit 32efbb7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/tools/opt/optdriver.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,8 @@ static cl::opt<bool> EnableProfileVerification(
224224
#else
225225
cl::init(false),
226226
#endif
227-
cl::desc("Start the pipeline with prof-inject and end it with prof-check"));
227+
cl::desc(
228+
"Start the pipeline with prof-inject and end it with prof-verify"));
228229

229230
static cl::opt<std::string> ClDataLayout("data-layout",
230231
cl::desc("data layout string to use"),

0 commit comments

Comments
 (0)