[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
Chris Lattner
lattner at cs.uiuc.edu
Thu Mar 9 09:31:34 PST 2006
Changes in directory llvm/lib/CodeGen/SelectionDAG:
ScheduleDAGList.cpp updated: 1.31 -> 1.32
---
Log message:
remove temporary option
---
Diffs of the changes: (+1 -3)
ScheduleDAGList.cpp | 4 +---
1 files changed, 1 insertion(+), 3 deletions(-)
Index: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp:1.31 llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp:1.32
--- llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp:1.31 Thu Mar 9 01:39:25 2006
+++ llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp Thu Mar 9 11:31:22 2006
@@ -33,8 +33,6 @@
using namespace llvm;
namespace {
- // FIXME: UseLatencies is temporary.
- cl::opt<bool> UseLatencies("use-sched-latencies");
Statistic<> NumNoops ("scheduler", "Number of noops inserted");
Statistic<> NumStalls("scheduler", "Number of pipeline stalls");
@@ -508,7 +506,7 @@
// Compute the latency for the node. We use the sum of the latencies for
// all nodes flagged together into this SUnit.
- if (InstrItins.isEmpty() || !UseLatencies) {
+ if (InstrItins.isEmpty()) {
// No latency information.
SU->Latency = 1;
} else {
More information about the llvm-commits
mailing list