diff options
author | Dan Gohman <gohman@apple.com> | 2010-05-26 00:56:27 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-05-26 00:56:27 +0000 |
commit | 4f989451328f638bab0e9535bbc1704ea7262324 (patch) | |
tree | 8b9958302e42273de6102815fc16f1a7ab7ef7f6 | |
parent | 5eabaa2d7c001d801a36d76affc1aa257ca2975c (diff) | |
download | external_llvm-4f989451328f638bab0e9535bbc1704ea7262324.zip external_llvm-4f989451328f638bab0e9535bbc1704ea7262324.tar.gz external_llvm-4f989451328f638bab0e9535bbc1704ea7262324.tar.bz2 |
Delete an unused function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104658 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/LatencyPriorityQueue.h | 2 | ||||
-rw-r--r-- | include/llvm/CodeGen/ScheduleDAG.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/LatencyPriorityQueue.h b/include/llvm/CodeGen/LatencyPriorityQueue.h index 7ac0418..28b6909 100644 --- a/include/llvm/CodeGen/LatencyPriorityQueue.h +++ b/include/llvm/CodeGen/LatencyPriorityQueue.h @@ -73,8 +73,6 @@ public: return NumNodesSolelyBlocking[NodeNum]; } - unsigned size() const { return Queue.size(); } - bool empty() const { return Queue.empty(); } virtual void push(SUnit *U) { diff --git a/include/llvm/CodeGen/ScheduleDAG.h b/include/llvm/CodeGen/ScheduleDAG.h index 9478806..d771402 100644 --- a/include/llvm/CodeGen/ScheduleDAG.h +++ b/include/llvm/CodeGen/ScheduleDAG.h @@ -424,7 +424,6 @@ namespace llvm { virtual void updateNode(const SUnit *SU) = 0; virtual void releaseState() = 0; - virtual unsigned size() const = 0; virtual bool empty() const = 0; virtual void push(SUnit *U) = 0; |