summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-06-19 05:47:49 +0000
committerChris Lattner <sabre@nondot.org>2007-06-19 05:47:49 +0000
commit37228f6ce5ceb6dc65d2b1d083789c63773b9691 (patch)
treeb73b6c2032a5863e99262ebf2e48c01c14b68f80 /llvm/lib/CodeGen
parent7936d91f70865ce30274c150bbd22840747fb6ba (diff)
downloadbcm5719-llvm-37228f6ce5ceb6dc65d2b1d083789c63773b9691.tar.gz
bcm5719-llvm-37228f6ce5ceb6dc65d2b1d083789c63773b9691.zip
document and hide two options.
llvm-svn: 37651
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/LLVMTargetMachine.cpp7
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,
OpenPOWER on IntegriCloud