summaryrefslogtreecommitdiffstats
path: root/llvm/include/llvm/Analysis/PostDominators.h
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/include/llvm/Analysis/PostDominators.h')
-rw-r--r--llvm/include/llvm/Analysis/PostDominators.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Analysis/PostDominators.h b/llvm/include/llvm/Analysis/PostDominators.h
index 6acca249616..6d29c408d9a 100644
--- a/llvm/include/llvm/Analysis/PostDominators.h
+++ b/llvm/include/llvm/Analysis/PostDominators.h
@@ -87,7 +87,7 @@ struct PostDominanceFrontier : public DominanceFrontierBase {
Frontiers.clear();
PostDominatorTree &DT = getAnalysis<PostDominatorTree>();
Roots = DT.getRoots();
- if (const DominatorTree::DomTreeNode *Root = DT.getRootNode())
+ if (const DomTreeNode *Root = DT.getRootNode())
calculate(DT, Root);
return false;
}
@@ -99,7 +99,7 @@ struct PostDominanceFrontier : public DominanceFrontierBase {
private:
const DomSetType &calculate(const PostDominatorTree &DT,
- const DominatorTree::DomTreeNode *Node);
+ const DomTreeNode *Node);
};
} // End llvm namespace
OpenPOWER on IntegriCloud