[llvm-commits] [llvm] r122551 - /llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h
Eric Christopher
echristo at apple.com
Fri Dec 24 18:38:01 PST 2010
Author: echristo
Date: Fri Dec 24 20:38:01 2010
New Revision: 122551
URL: http://llvm.org/viewvc/llvm-project?rev=122551&view=rev
Log:
Header warning patrol.
Modified:
llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h
Modified: llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h?rev=122551&r1=122550&r2=122551&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h (original)
+++ llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h Fri Dec 24 20:38:01 2010
@@ -442,7 +442,7 @@
bool hasReadyFilter() const { return HasReadyFilter; }
- virtual bool isReady(SUnit *U) const {
+ virtual bool isReady(SUnit *) const {
assert(!HasReadyFilter && "The ready filter must override isReady()");
return true;
}
@@ -458,7 +458,7 @@
virtual void remove(SUnit *SU) = 0;
- virtual void dump(ScheduleDAG *DAG) const {}
+ virtual void dump(ScheduleDAG *) const {}
/// ScheduledNode - As each node is scheduled, this method is invoked. This
/// allows the priority function to adjust the priority of related
More information about the llvm-commits
mailing list