[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed Mar 8 23:13:13 PST 2006
Changes in directory llvm/lib/CodeGen/SelectionDAG:
ScheduleDAGSimple.cpp updated: 1.5 -> 1.6
---
Log message:
don't copy all itinerary data
---
Diffs of the changes: (+1 -1)
ScheduleDAGSimple.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp:1.5 llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp:1.6
--- llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp:1.5 Mon Jan 23 22:43:17 2006
+++ llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp Thu Mar 9 01:13:00 2006
@@ -292,7 +292,7 @@
///
void ScheduleDAGSimple::GatherSchedulingInfo() {
// Get instruction itineraries for the target
- const InstrItineraryData InstrItins = TM.getInstrItineraryData();
+ const InstrItineraryData &InstrItins = TM.getInstrItineraryData();
// For each node
for (unsigned i = 0, N = NodeCount; i < N; i++) {
More information about the llvm-commits
mailing list