1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Don't bother calling releaseMemory before destroying the DominatorTreeBase.

llvm-svn: 106287
This commit is contained in:
Dan Gohman 2010-06-18 16:09:11 +00:00
parent 07dc65e0b5
commit 0422fad3a6
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;
}