From 7d5b6526bbe3e49ae91d7ee79b15bf12ad5f07a0 Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Wed, 27 Aug 2003 15:52:23 +0000 Subject: [PATCH] *** empty log message *** llvm-svn: 8161 --- llvm/include/llvm/CodeGen/SchedGraphCommon.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/CodeGen/SchedGraphCommon.h b/llvm/include/llvm/CodeGen/SchedGraphCommon.h index c9ded7719164..fc2b1bac6f34 100644 --- a/llvm/include/llvm/CodeGen/SchedGraphCommon.h +++ b/llvm/include/llvm/CodeGen/SchedGraphCommon.h @@ -139,7 +139,7 @@ public: SchedGraphEdge(SchedGraphNodeCommon* _src, SchedGraphNodeCommon* _sink, ResourceId _resourceId, int _minDelay = -1); - ~SchedGraphEdge(); + ~SchedGraphEdge() {} SchedGraphNodeCommon* getSrc() const { return src; } SchedGraphNodeCommon* getSink() const { return sink; } @@ -203,7 +203,7 @@ public: void eraseOutgoingEdges(SchedGraphNodeCommon* node, bool addDummyEdges = true); void eraseIncidentEdges(SchedGraphNodeCommon* node, bool addDummyEdges = true); - SchedGraphCommon(); + SchedGraphCommon() {} ~SchedGraphCommon(); };