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 | 85ef2546303fabe32de3f2519a978fa2a7fd5958 (patch) | |
tree | d2f9ad9cdfb56c8d4210a62d4e7d9fd4e42071f5 /lib/CodeGen/LLVMTargetMachine.cpp | |
parent | 3ee774091ba6d25c7db4b0481b963454bd6d9903 (diff) |
document and hide two options.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37651 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LLVMTargetMachine.cpp')
-rw-r--r-- | lib/CodeGen/LLVMTargetMachine.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp index 3371b7948b..500f0e0941 100644 --- a/lib/CodeGen/LLVMTargetMachine.cpp +++ b/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, |