1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Make these options hidden to reduce the amount of text -help puts on the

command line, they'll still be seen with -help-hidden.

llvm-svn: 127353
This commit is contained in:
Eric Christopher 2011-03-09 19:46:51 +00:00
parent c969bd2ff1
commit f99de77b19

View File

@ -63,11 +63,13 @@ PassOptionList;
// Print IR out before/after specified passes.
static PassOptionList
PrintBefore("print-before",
llvm::cl::desc("Print IR before specified passes"));
llvm::cl::desc("Print IR before specified passes"),
cl::Hidden);
static PassOptionList
PrintAfter("print-after",
llvm::cl::desc("Print IR after specified passes"));
llvm::cl::desc("Print IR after specified passes"),
cl::Hidden);
static cl::opt<bool>
PrintBeforeAll("print-before-all",