diff options
author | Eric Christopher <echristo@apple.com> | 2010-12-25 02:38:01 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-12-25 02:38:01 +0000 |
commit | 481de07b005db9d301a30f6fbda39e57f1ef2370 (patch) | |
tree | 8966831fa0c46f75c8e8eb4d2f1d6eba0121e75a | |
parent | b90b2f06354ad572afe56b344c8b3d5d596599d7 (diff) | |
download | bcm5719-llvm-481de07b005db9d301a30f6fbda39e57f1ef2370.tar.gz bcm5719-llvm-481de07b005db9d301a30f6fbda39e57f1ef2370.zip |
Header warning patrol.
llvm-svn: 122551
-rw-r--r-- | llvm/include/llvm/CodeGen/ScheduleDAG.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/CodeGen/ScheduleDAG.h b/llvm/include/llvm/CodeGen/ScheduleDAG.h index b3d05c700ac..d11562c9778 100644 --- a/llvm/include/llvm/CodeGen/ScheduleDAG.h +++ b/llvm/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 |