From fd5da6c991ad0bb5c0b6ce797d56c49ad3f73803 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Sat, 29 Mar 2008 18:34:22 +0000 Subject: [PATCH] Cosmetic changes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48947 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 27 +++----------------------- 1 file changed, 3 insertions(+), 24 deletions(-) diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index 024190df6bd..558f5f1bfba 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp @@ -1708,28 +1708,9 @@ void BURegReductionPriorityQueue::CalculateSethiUllmanNumbers() { CalcNodeSethiUllmanNumber(&(*SUnits)[i]); } -#if 0 -static unsigned SumOfUnscheduledPredsOfSuccs(const SUnit *SU) { - unsigned Sum = 0; - for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end(); - I != E; ++I) { - SUnit *SuccSU = I->Dep; - for (SUnit::const_pred_iterator II = SuccSU->Preds.begin(), - EE = SuccSU->Preds.end(); II != EE; ++II) { - SUnit *PredSU = II->Dep; - if (!PredSU->isScheduled) - ++Sum; - } - } - - return Sum; -} -#endif - /// LimitedSumOfUnscheduledPredsOfSuccs - Compute the sum of the unscheduled /// predecessors of the successors of the SUnit SU. Stop when the provided /// limit is exceeded. - static unsigned LimitedSumOfUnscheduledPredsOfSuccs(const SUnit *SU, unsigned Limit) { unsigned Sum = 0; @@ -1739,11 +1720,9 @@ static unsigned LimitedSumOfUnscheduledPredsOfSuccs(const SUnit *SU, for (SUnit::const_pred_iterator II = SuccSU->Preds.begin(), EE = SuccSU->Preds.end(); II != EE; ++II) { SUnit *PredSU = II->Dep; - if (!PredSU->isScheduled) { - ++Sum; - if(Sum > Limit) - return Sum; - } + if (!PredSU->isScheduled) + if (++Sum > Limit) + return Sum; } } return Sum; -- 2.11.0