diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-06-19 05:47:49 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-06-19 05:47:49 +0000 |
| commit | 37228f6ce5ceb6dc65d2b1d083789c63773b9691 (patch) | |
| tree | b73b6c2032a5863e99262ebf2e48c01c14b68f80 /llvm/lib | |
| parent | 7936d91f70865ce30274c150bbd22840747fb6ba (diff) | |
| download | bcm5719-llvm-37228f6ce5ceb6dc65d2b1d083789c63773b9691.tar.gz bcm5719-llvm-37228f6ce5ceb6dc65d2b1d083789c63773b9691.zip | |
document and hide two options.
llvm-svn: 37651
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/LLVMTargetMachine.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/LLVMTargetMachine.cpp b/llvm/lib/CodeGen/LLVMTargetMachine.cpp index 3371b7948b6..500f0e0941c 100644 --- a/llvm/lib/CodeGen/LLVMTargetMachine.cpp +++ b/llvm/lib/CodeGen/LLVMTargetMachine.cpp @@ -22,8 +22,11 @@ #include "llvm/Support/CommandLine.h" using namespace llvm; -static cl::opt<bool> PrintLSR("print-lsr-output"); -static cl::opt<bool> PrintISelInput("print-isel-input"); +static cl::opt<bool> PrintLSR("print-lsr-output", cl::Hidden, + cl::desc("Print LLVM IR produced by the loop-reduce pass")); +static cl::opt<bool> PrintISelInput("print-isel-input", cl::Hidden, + cl::desc("Print LLVM IR input to isel pass")); + FileModel::Model LLVMTargetMachine::addPassesToEmitFile(FunctionPassManager &PM, std::ostream &Out, |

