We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f972985 commit ae898e8Copy full SHA for ae898e8
llvm/tools/opt/optdriver.cpp
@@ -84,8 +84,12 @@ static cl::opt<bool> EnableLegacyPassManager(
84
static cl::opt<std::string> PassPipeline(
85
"passes",
86
cl::desc(
87
- "A textual description of the pass pipeline. To have analysis passes "
88
- "available before a certain pass, add \"require<foo-analysis>\"."));
+ "A textual (comma separated) description of the pass pipeline. To have "
+ "analysis passes available before a certain pass, add "
89
+ "\"require<foo-analysis>\". See "
90
+ "https://llvm.org/docs/NewPassManager.html#invoking-opt "
91
+ "for more details on the pass pipeline syntax. "));
92
+
93
static cl::alias PassPipeline2("p", cl::aliasopt(PassPipeline),
94
cl::desc("Alias for -passes"));
95
0 commit comments