projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d453960
)
MISched: Remove SchedRemainder::IsResourceLimited. I don't know how to compute it.
author
Andrew Trick
<atrick@apple.com>
Tue, 18 Dec 2012 20:52:54 +0000
(20:52 +0000)
committer
Andrew Trick
<atrick@apple.com>
Tue, 18 Dec 2012 20:52:54 +0000
(20:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170451
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/MachineScheduler.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/MachineScheduler.cpp
b/lib/CodeGen/MachineScheduler.cpp
index fbbae3877acbb5bdb1d2f8b533dbb85f129da40b..df3bec12f9e2394d8e5a7b5c8e2bc7857f0ea3ba 100644
(file)
--- a/
lib/CodeGen/MachineScheduler.cpp
+++ b/
lib/CodeGen/MachineScheduler.cpp
@@
-953,8
+953,6
@@
public:
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
@@
public:
RemainingCounts.clear();
CritResIdx = 0;
RemainingMicroOps = 0;
- IsResourceLimited = false;
MaxRemainingCount = 0;
}