aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineScheduler.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-12-18 20:52:54 +0000
committerAndrew Trick <atrick@apple.com>2012-12-18 20:52:54 +0000
commit44f54d97a4ee77186a273face2b68a2728207c3d (patch)
treec20ac311627867f9faaf964281833210f2126730 /llvm/lib/CodeGen/MachineScheduler.cpp
parent493b867b5d90ba9b50950593880614c17d90aa66 (diff)
downloadllvm-44f54d97a4ee77186a273face2b68a2728207c3d.zip
llvm-44f54d97a4ee77186a273face2b68a2728207c3d.tar.gz
llvm-44f54d97a4ee77186a273face2b68a2728207c3d.tar.bz2
MISched: Remove SchedRemainder::IsResourceLimited. I don't know how to compute it.
llvm-svn: 170451
Diffstat (limited to 'llvm/lib/CodeGen/MachineScheduler.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineScheduler.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp
index fbbae38..df3bec1 100644
--- a/llvm/lib/CodeGen/MachineScheduler.cpp
+++ b/llvm/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;
}