[llvm-commits] CVS: llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri May 13 12:45:59 PDT 2005
Changes in directory llvm/lib/Target/SparcV9:
SparcV9TargetMachine.cpp updated: 1.136 -> 1.137
---
Log message:
clarify that these are v9 options
---
Diffs of the changes: (+3 -3)
SparcV9TargetMachine.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp
diff -u llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp:1.136 llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp:1.137
--- llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp:1.136 Fri May 13 14:44:21 2005
+++ llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp Fri May 13 14:45:45 2005
@@ -53,10 +53,10 @@
namespace {
cl::opt<bool> DisableSched("disable-sched",
- cl::desc("Disable local scheduling pass"));
+ cl::desc("Disable sparcv9 local scheduling pass"));
cl::opt<bool> DisablePeephole("disable-peephole",
- cl::desc("Disable peephole optimization pass"));
+ cl::desc("Disable sparcv9 peephole optimization pass"));
cl::opt<bool, true> EmitMappingInfoOpt("enable-maps", cl::ReallyHidden,
cl::location(EmitMappingInfo),
@@ -64,7 +64,7 @@
cl::desc("Emit LLVM-to-MachineCode mapping info to assembly"));
cl::opt<bool> EnableModSched("enable-modsched",
- cl::desc("Enable modulo scheduling pass instead of local scheduling"), cl::Hidden);
+ cl::desc("Enable sparcv9 modulo scheduling pass instead of local scheduling"), cl::Hidden);
// Register the target.
RegisterTarget<SparcV9TargetMachine> X("sparcv9", " SPARC V9");
More information about the llvm-commits
mailing list