diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-29 06:31:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-29 06:31:16 +0000 |
commit | bceb68807fdb86c794bc8d8f8aef0940f12c2ceb (patch) | |
tree | a5f66bcb71b2cf498474c602202a93da5b34bf73 /lib/CodeGen/InstrSched/InstrScheduling.cpp | |
parent | 620ee02353d8b65959dc01a66b073adfcdef9eac (diff) |
Eliminate the distinction between "real" and "unreal" instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11986 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/InstrSched/InstrScheduling.cpp')
-rw-r--r-- | lib/CodeGen/InstrSched/InstrScheduling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/InstrSched/InstrScheduling.cpp b/lib/CodeGen/InstrSched/InstrScheduling.cpp index b273bcb05a..5395a8197c 100644 --- a/lib/CodeGen/InstrSched/InstrScheduling.cpp +++ b/lib/CodeGen/InstrSched/InstrScheduling.cpp @@ -520,7 +520,7 @@ SchedulingManager::SchedulingManager(const TargetMachine& target, 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); |