[llvm-commits] CVS: llvm/include/llvm/CodeGen/SchedGraphCommon.h
Tanya Brethour
tbrethou at niobe.cs.uiuc.edu
Wed Aug 27 10:53:02 PDT 2003
Changes in directory llvm/include/llvm/CodeGen:
SchedGraphCommon.h updated: 1.2 -> 1.3
---
Log message:
(null)
---
Diffs of the changes:
Index: llvm/include/llvm/CodeGen/SchedGraphCommon.h
diff -u llvm/include/llvm/CodeGen/SchedGraphCommon.h:1.2 llvm/include/llvm/CodeGen/SchedGraphCommon.h:1.3
--- llvm/include/llvm/CodeGen/SchedGraphCommon.h:1.2 Tue Aug 26 21:45:08 2003
+++ llvm/include/llvm/CodeGen/SchedGraphCommon.h Wed Aug 27 10:52:23 2003
@@ -139,7 +139,7 @@
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 @@
void eraseOutgoingEdges(SchedGraphNodeCommon* node, bool addDummyEdges = true);
void eraseIncidentEdges(SchedGraphNodeCommon* node, bool addDummyEdges = true);
- SchedGraphCommon();
+ SchedGraphCommon() {}
~SchedGraphCommon();
};
More information about the llvm-commits
mailing list