document and hide two options.

llvm-svn: 37651
This commit is contained in:
Chris Lattner 2007-06-19 05:47:49 +00:00
parent 7936d91f70
commit 37228f6ce5
1 changed files with 5 additions and 2 deletions

View File

@ -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,