diff options
author | Tanya Lattner <tonic@nondot.org> | 2003-08-27 15:52:23 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2003-08-27 15:52:23 +0000 |
commit | d04087cce67de5f5c2cb490a2ef673c66e5cb89d (patch) | |
tree | 2ab05e6f3d33ab797a13c11f43f43785ddf9adc6 | |
parent | d6d863392fdc7649fd3f68d0779f1178db91e1ef (diff) | |
download | external_llvm-d04087cce67de5f5c2cb490a2ef673c66e5cb89d.zip external_llvm-d04087cce67de5f5c2cb490a2ef673c66e5cb89d.tar.gz external_llvm-d04087cce67de5f5c2cb490a2ef673c66e5cb89d.tar.bz2 |
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8161 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/SchedGraphCommon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SchedGraphCommon.h b/include/llvm/CodeGen/SchedGraphCommon.h index c9ded77..fc2b1ba 100644 --- a/include/llvm/CodeGen/SchedGraphCommon.h +++ b/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(); }; |