summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/LatencyPriorityQueue.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-05-26 01:10:55 +0000
committerDan Gohman <gohman@apple.com>2010-05-26 01:10:55 +0000
commita4e4ffd389497eb28f5fe91521fb71da4340e5d6 (patch)
tree4b451f9b85311f831df0e12084e3a13e1f4f0258 /include/llvm/CodeGen/LatencyPriorityQueue.h
parent4f989451328f638bab0e9535bbc1704ea7262324 (diff)
downloadllvm-a4e4ffd389497eb28f5fe91521fb71da4340e5d6.tar.gz
llvm-a4e4ffd389497eb28f5fe91521fb71da4340e5d6.tar.bz2
llvm-a4e4ffd389497eb28f5fe91521fb71da4340e5d6.tar.xz
Change push_all to a non-virtual function and implement it in the
base class, since all the implementations are the same. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104659 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/LatencyPriorityQueue.h')
-rw-r--r--include/llvm/CodeGen/LatencyPriorityQueue.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/include/llvm/CodeGen/LatencyPriorityQueue.h b/include/llvm/CodeGen/LatencyPriorityQueue.h
index 28b6909a2b..18c418b103 100644
--- a/include/llvm/CodeGen/LatencyPriorityQueue.h
+++ b/include/llvm/CodeGen/LatencyPriorityQueue.h
@@ -75,15 +75,7 @@ public:
bool empty() const { return Queue.empty(); }
- virtual void push(SUnit *U) {
- push_impl(U);
- }
- void push_impl(SUnit *U);
-
- void push_all(const std::vector<SUnit *> &Nodes) {
- for (unsigned i = 0, e = Nodes.size(); i != e; ++i)
- push_impl(Nodes[i]);
- }
+ virtual void push(SUnit *U);
SUnit *pop() {
if (empty()) return NULL;