diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2011-10-21 01:23:41 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2011-10-21 01:23:41 +0000 |
commit | 001153784a3a16ecdefbe4e5c462bc5649b1ed92 (patch) | |
tree | 3759339e5b429371e3b14de9b95d42584faabe3e /llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | |
parent | c842c2ffe270a608ee4b74aa90b7aac9f2bf005a (diff) | |
download | bcm5719-llvm-001153784a3a16ecdefbe4e5c462bc5649b1ed92.tar.gz bcm5719-llvm-001153784a3a16ecdefbe4e5c462bc5649b1ed92.zip |
Remove a now dead function, fixing -Wunused-function warnings from
Clang.
llvm-svn: 142631
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index 17299106017..8ecbf34b92a 100644 --- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp @@ -2752,26 +2752,6 @@ void RegReductionPQBase::AddPseudoTwoAddrDeps() { } } -/// 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; - for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end(); - I != E; ++I) { - const SUnit *SuccSU = I->getSUnit(); - for (SUnit::const_pred_iterator II = SuccSU->Preds.begin(), - EE = SuccSU->Preds.end(); II != EE; ++II) { - SUnit *PredSU = II->getSUnit(); - if (!PredSU->isScheduled) - if (++Sum > Limit) - return Sum; - } - } - return Sum; -} - //===----------------------------------------------------------------------===// // Public Constructor Functions //===----------------------------------------------------------------------===// |