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 { _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits