summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/ScheduleDAG.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-12-25 02:38:01 +0000
committerEric Christopher <echristo@apple.com>2010-12-25 02:38:01 +0000
commit7853ae1d97acb65bd4dfd9a15478c14f475dbd41 (patch)
treef73a6360f201e13bca94beda6306586e7fc27164 /include/llvm/CodeGen/ScheduleDAG.h
parent49c7e3e290e4633971cbeac996d8cffbe2aedc1d (diff)
downloadllvm-7853ae1d97acb65bd4dfd9a15478c14f475dbd41.tar.gz
llvm-7853ae1d97acb65bd4dfd9a15478c14f475dbd41.tar.bz2
llvm-7853ae1d97acb65bd4dfd9a15478c14f475dbd41.tar.xz
Header warning patrol.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122551 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/ScheduleDAG.h')
-rw-r--r--include/llvm/CodeGen/ScheduleDAG.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/ScheduleDAG.h b/include/llvm/CodeGen/ScheduleDAG.h
index b3d05c700a..d11562c977 100644
--- a/include/llvm/CodeGen/ScheduleDAG.h
+++ b/include/llvm/CodeGen/ScheduleDAG.h
@@ -442,7 +442,7 @@ namespace llvm {
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 @@ namespace llvm {
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