[llvm-commits] [llvm] r170451 - /llvm/trunk/lib/CodeGen/MachineScheduler.cpp
Andrew Trick
atrick at apple.com
Tue Dec 18 12:52:54 PST 2012
Author: atrick
Date: Tue Dec 18 14:52:54 2012
New Revision: 170451
URL: http://llvm.org/viewvc/llvm-project?rev=170451&view=rev
Log:
MISched: Remove SchedRemainder::IsResourceLimited. I don't know how to compute it.
Modified:
llvm/trunk/lib/CodeGen/MachineScheduler.cpp
Modified: llvm/trunk/lib/CodeGen/MachineScheduler.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineScheduler.cpp?rev=170451&r1=170450&r2=170451&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineScheduler.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineScheduler.cpp Tue Dec 18 14:52:54 2012
@@ -953,8 +953,6 @@
unsigned CritResIdx;
// Number of micro-ops left to schedule.
unsigned RemainingMicroOps;
- // Is the unscheduled zone resource limited.
- bool IsResourceLimited;
unsigned MaxRemainingCount;
@@ -963,7 +961,6 @@
RemainingCounts.clear();
CritResIdx = 0;
RemainingMicroOps = 0;
- IsResourceLimited = false;
MaxRemainingCount = 0;
}
More information about the llvm-commits
mailing list