[llvm-commits] CVS: llvm/lib/CodeGen/LLVMTargetMachine.cpp
Chris Lattner
sabre at nondot.org
Mon Jun 18 22:48:11 PDT 2007
Changes in directory llvm/lib/CodeGen:
LLVMTargetMachine.cpp updated: 1.14 -> 1.15
---
Log message:
document and hide two options.
---
Diffs of the changes: (+5 -2)
LLVMTargetMachine.cpp | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
Index: llvm/lib/CodeGen/LLVMTargetMachine.cpp
diff -u llvm/lib/CodeGen/LLVMTargetMachine.cpp:1.14 llvm/lib/CodeGen/LLVMTargetMachine.cpp:1.15
--- llvm/lib/CodeGen/LLVMTargetMachine.cpp:1.14 Tue May 22 13:31:04 2007
+++ llvm/lib/CodeGen/LLVMTargetMachine.cpp Tue Jun 19 00:47:49 2007
@@ -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,
More information about the llvm-commits
mailing list