From d59b083d22a01d9c48c9ea16757186ebf7c7049a Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 24 Nov 2008 19:51:59 +0000 Subject: [PATCH] Fix an unused-parameter warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59977 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/ScheduleDAG.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/CodeGen/ScheduleDAG.h b/include/llvm/CodeGen/ScheduleDAG.h index e120e08593e..71f0e88ed1a 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 &GW) const {} + virtual void addCustomGraphFeatures(GraphWriter &) const {} #ifndef NDEBUG /// VerifySchedule - Verify that all SUnits were scheduled and that -- 2.34.1