Don't bother calling releaseMemory before destroying the DominatorTreeBase.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106287 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2010-06-18 16:09:11 +00:00
parent 927f866105
commit 4593433015
2 changed files with 0 additions and 2 deletions

View File

@ -704,7 +704,6 @@ public:
}
~DominatorTree() {
DT->releaseMemory();
delete DT;
}

View File

@ -46,7 +46,6 @@ MachineDominatorTree::MachineDominatorTree()
}
MachineDominatorTree::~MachineDominatorTree() {
DT->releaseMemory();
delete DT;
}