diff options
Diffstat (limited to 'lib/Transforms/Scalar/ADCE.cpp')
-rw-r--r-- | lib/Transforms/Scalar/ADCE.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/ADCE.cpp b/lib/Transforms/Scalar/ADCE.cpp index 5bfb587cbe..4968fc9ed7 100644 --- a/lib/Transforms/Scalar/ADCE.cpp +++ b/lib/Transforms/Scalar/ADCE.cpp @@ -387,8 +387,8 @@ bool ADCE::doADCE() { // postdominator that is alive, and the last postdominator that is // dead... // - PostDominatorTree::DomTreeNode *LastNode = DT[TI->getSuccessor(i)]; - PostDominatorTree::DomTreeNode *NextNode = 0; + DomTreeNode *LastNode = DT[TI->getSuccessor(i)]; + DomTreeNode *NextNode = 0; if (LastNode) { NextNode = LastNode->getIDom(); |