summaryrefslogtreecommitdiff
path: root/lib/Analysis/PostDominators.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-11 16:26:13 +0000
committerChris Lattner <sabre@nondot.org>2003-09-11 16:26:13 +0000
commitc444a4228f31656f854d15eac671b450df557346 (patch)
treef39ba3bf7089c44f1870b7439a8ccfb2cce64503 /lib/Analysis/PostDominators.cpp
parent317a61b2db56f5be5fc7acbe2c81ebac5f15aca7 (diff)
downloadllvm-c444a4228f31656f854d15eac671b450df557346.tar.gz
llvm-c444a4228f31656f854d15eac671b450df557346.tar.bz2
llvm-c444a4228f31656f854d15eac671b450df557346.tar.xz
Renamed DominatorTree::Node::getNode() -> getBlock()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8469 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/PostDominators.cpp')
-rw-r--r--lib/Analysis/PostDominators.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/PostDominators.cpp b/lib/Analysis/PostDominators.cpp
index 6be8f3dd23..7dbeb35c25 100644
--- a/lib/Analysis/PostDominators.cpp
+++ b/lib/Analysis/PostDominators.cpp
@@ -174,7 +174,7 @@ const DominanceFrontier::DomSetType &
PostDominanceFrontier::calculate(const PostDominatorTree &DT,
const DominatorTree::Node *Node) {
// Loop over CFG successors to calculate DFlocal[Node]
- BasicBlock *BB = Node->getNode();
+ BasicBlock *BB = Node->getBlock();
DomSetType &S = Frontiers[BB]; // The new set to fill in...
if (getRoots().empty()) return S;