summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis
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
commitbb9d03b9c02529004f33faab7ffc8317686b43de (patch)
tree3604703d6a229dee9a20edaea05014d894967277 /llvm/lib/Analysis
parentc5df0bb273d097b18e4b7468b7103cd3baa66958 (diff)
downloadbcm5719-llvm-bb9d03b9c02529004f33faab7ffc8317686b43de.tar.gz
bcm5719-llvm-bb9d03b9c02529004f33faab7ffc8317686b43de.zip
Renamed DominatorTree::Node::getNode() -> getBlock()
llvm-svn: 8469
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r--llvm/lib/Analysis/PostDominators.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/PostDominators.cpp b/llvm/lib/Analysis/PostDominators.cpp
index 6be8f3dd231..7dbeb35c253 100644
--- a/llvm/lib/Analysis/PostDominators.cpp
+++ b/llvm/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;
OpenPOWER on IntegriCloud