[llvm-commits] [llvm] r59977 - /llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h
Dan Gohman
gohman at apple.com
Mon Nov 24 11:52:00 PST 2008
Author: djg
Date: Mon Nov 24 13:51:59 2008
New Revision: 59977
URL: http://llvm.org/viewvc/llvm-project?rev=59977&view=rev
Log:
Fix an unused-parameter warning.
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=59977&r1=59976&r2=59977&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h (original)
+++ llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h Mon Nov 24 13:51:59 2008
@@ -313,7 +313,7 @@
/// 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
More information about the llvm-commits
mailing list