summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-12-23 17:22:32 +0000
committerDan Gohman <gohman@apple.com>2008-12-23 17:22:32 +0000
commit3a57213e3847d95d58ef01a99c450d0ecc6df7f3 (patch)
treef97e545d0e220d30bf06eb4dbe462f81f4da5b6c
parentccd251b88f1e867e18866ba1d6e60d7839489457 (diff)
downloadbcm5719-llvm-3a57213e3847d95d58ef01a99c450d0ecc6df7f3.tar.gz
bcm5719-llvm-3a57213e3847d95d58ef01a99c450d0ecc6df7f3.zip
Minor code simplifications.
llvm-svn: 61371
-rw-r--r--llvm/lib/CodeGen/ScheduleDAG.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/ScheduleDAG.cpp b/llvm/lib/CodeGen/ScheduleDAG.cpp
index 8630cfee7d7..c2d291dadd3 100644
--- a/llvm/lib/CodeGen/ScheduleDAG.cpp
+++ b/llvm/lib/CodeGen/ScheduleDAG.cpp
@@ -177,7 +177,7 @@ void SUnit::setHeightToAtLeast(unsigned NewHeight) {
void SUnit::ComputeDepth() {
SmallVector<SUnit*, 8> WorkList;
WorkList.push_back(this);
- while (!WorkList.empty()) {
+ do {
SUnit *Cur = WorkList.back();
bool Done = true;
@@ -202,7 +202,7 @@ void SUnit::ComputeDepth() {
}
Cur->isDepthCurrent = true;
}
- }
+ } while (!WorkList.empty());
}
/// ComputeHeight - Calculate the maximal path from the node to the entry.
@@ -210,7 +210,7 @@ void SUnit::ComputeDepth() {
void SUnit::ComputeHeight() {
SmallVector<SUnit*, 8> WorkList;
WorkList.push_back(this);
- while (!WorkList.empty()) {
+ do {
SUnit *Cur = WorkList.back();
bool Done = true;
@@ -235,7 +235,7 @@ void SUnit::ComputeHeight() {
}
Cur->isHeightCurrent = true;
}
- }
+ } while (!WorkList.empty());
}
/// SUnit - Scheduling unit. It's an wrapper around either a single SDNode or
@@ -467,7 +467,7 @@ void ScheduleDAGTopologicalSort::DFS(const SUnit *SU, int UpperBound,
WorkList.reserve(SUnits.size());
WorkList.push_back(SU);
- while (!WorkList.empty()) {
+ do {
SU = WorkList.back();
WorkList.pop_back();
Visited.set(SU->NodeNum);
@@ -482,7 +482,7 @@ void ScheduleDAGTopologicalSort::DFS(const SUnit *SU, int UpperBound,
WorkList.push_back(SU->Succs[I].getSUnit());
}
}
- }
+ } while (!WorkList.empty());
}
/// Shift - Renumber the nodes so that the topological ordering is
OpenPOWER on IntegriCloud