diff options
author | Dan Gohman <gohman@apple.com> | 2008-11-24 19:51:59 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-11-24 19:51:59 +0000 |
commit | d59b083d22a01d9c48c9ea16757186ebf7c7049a (patch) | |
tree | 49433316d56a8a4a4a1ba785f49cfc2c8658e550 /include/llvm/CodeGen | |
parent | 7f2d6efbaa763654d91a70ed3a9a8d6a9da3a82c (diff) |
Fix an unused-parameter warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59977 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r-- | include/llvm/CodeGen/ScheduleDAG.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/ScheduleDAG.h b/include/llvm/CodeGen/ScheduleDAG.h index e120e08593..71f0e88ed1 100644 --- a/include/llvm/CodeGen/ScheduleDAG.h +++ b/include/llvm/CodeGen/ScheduleDAG.h @@ -313,7 +313,7 @@ namespace llvm { /// addCustomGraphFeatures - Add custom features for a visualization of /// the ScheduleDAG. - virtual void addCustomGraphFeatures(GraphWriter<ScheduleDAG*> &GW) const {} + virtual void addCustomGraphFeatures(GraphWriter<ScheduleDAG*> &) const {} #ifndef NDEBUG /// VerifySchedule - Verify that all SUnits were scheduled and that |