[llvm-commits] CVS: llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Feb 29 00:32:38 PST 2004
Changes in directory llvm/lib/CodeGen/InstrSched:
InstrScheduling.cpp updated: 1.68 -> 1.69
---
Log message:
Eliminate the distinction between "real" and "unreal" instructions
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp
diff -u llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp:1.68 llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp:1.69
--- llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp:1.68 Wed Feb 25 16:09:35 2004
+++ llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp Sun Feb 29 00:30:45 2004
@@ -520,7 +520,7 @@
nextEarliestIssueTime(0),
choicesForSlot(nslots),
numInClass(target.getSchedInfo().getNumSchedClasses(), 0), // set all to 0
- nextEarliestStartTime(target.getInstrInfo().getNumRealOpCodes(),
+ nextEarliestStartTime(target.getInstrInfo().getNumOpcodes(),
(cycles_t) 0) // set all to 0
{
updateTime(0);
More information about the llvm-commits
mailing list