[llvm-commits] [llvm] r104658 - in /llvm/trunk/include/llvm/CodeGen: LatencyPriorityQueue.h ScheduleDAG.h
Dan Gohman
gohman at apple.com
Tue May 25 17:56:27 PDT 2010
Author: djg
Date: Tue May 25 19:56:27 2010
New Revision: 104658
URL: http://llvm.org/viewvc/llvm-project?rev=104658&view=rev
Log:
Delete an unused function.
Modified:
llvm/trunk/include/llvm/CodeGen/LatencyPriorityQueue.h
llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h
Modified: llvm/trunk/include/llvm/CodeGen/LatencyPriorityQueue.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/LatencyPriorityQueue.h?rev=104658&r1=104657&r2=104658&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/LatencyPriorityQueue.h (original)
+++ llvm/trunk/include/llvm/CodeGen/LatencyPriorityQueue.h Tue May 25 19:56:27 2010
@@ -73,8 +73,6 @@
return NumNodesSolelyBlocking[NodeNum];
}
- unsigned size() const { return Queue.size(); }
-
bool empty() const { return Queue.empty(); }
virtual void push(SUnit *U) {
Modified: llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h?rev=104658&r1=104657&r2=104658&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h (original)
+++ llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h Tue May 25 19:56:27 2010
@@ -424,7 +424,6 @@
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;
More information about the llvm-commits
mailing list