diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-12 01:34:05 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-12 01:34:05 +0000 |
commit | 918cdd420b52a4745ce7d4495759c87fd1b32fd5 (patch) | |
tree | 4e868d89cd2463220f702609670c6857862a2129 /lib/CodeGen/InstrSched/SchedPriorities.cpp | |
parent | cd0b3a90aa34bd42d75d8d86f74ca4972145781d (diff) |
getOpCode() --> getOpcode().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11339 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/InstrSched/SchedPriorities.cpp')
-rw-r--r-- | lib/CodeGen/InstrSched/SchedPriorities.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/InstrSched/SchedPriorities.cpp b/lib/CodeGen/InstrSched/SchedPriorities.cpp index 7e05d1417f..b5bc38e8a0 100644 --- a/lib/CodeGen/InstrSched/SchedPriorities.cpp +++ b/lib/CodeGen/InstrSched/SchedPriorities.cpp @@ -211,7 +211,7 @@ SchedPriorities::getNextHighest(const SchedulingManager& S, // it becomes empty. nextChoice = candsAsHeap.getNode(mcands[nextIdx]); if (getEarliestReadyTimeForNode(nextChoice) > curTime - || ! instrIsFeasible(S, nextChoice->getMachineInstr()->getOpCode())) + || ! instrIsFeasible(S, nextChoice->getMachineInstr()->getOpcode())) { mcands.erase(mcands.begin() + nextIdx); nextIdx = -1; |