document and hide two options.
authorChris Lattner <sabre@nondot.org>
Tue, 19 Jun 2007 05:47:49 +0000 (05:47 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 19 Jun 2007 05:47:49 +0000 (05:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37651 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/LLVMTargetMachine.cpp

index 3371b7948b6468357fcf130d95ddb35cc836e6ae..500f0e0941c35bb451117d00fd87f626b7cde698 100644 (file)
 #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,