forked from OSchip/llvm-project
Don't bother calling releaseMemory before destroying the DominatorTreeBase.
llvm-svn: 106287
This commit is contained in:
parent
7edb39cc6b
commit
9f58b3e106
|
@ -704,7 +704,6 @@ public:
|
|||
}
|
||||
|
||||
~DominatorTree() {
|
||||
DT->releaseMemory();
|
||||
delete DT;
|
||||
}
|
||||
|
||||
|
|
|
@ -46,7 +46,6 @@ MachineDominatorTree::MachineDominatorTree()
|
|||
}
|
||||
|
||||
MachineDominatorTree::~MachineDominatorTree() {
|
||||
DT->releaseMemory();
|
||||
delete DT;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue