aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2007-09-23 22:16:38 +0000
committerOwen Anderson <resistor@mac.com>2007-09-23 22:16:38 +0000
commiteefb31094f2481815884afba0076eadbf89045f1 (patch)
treebd144482772d1380b70861b38b1a6afcd3441534 /lib/VMCore
parent96d514d21afc6d77b2af0606fb810749eb19816a (diff)
downloadexternal_llvm-eefb31094f2481815884afba0076eadbf89045f1.zip
external_llvm-eefb31094f2481815884afba0076eadbf89045f1.tar.gz
external_llvm-eefb31094f2481815884afba0076eadbf89045f1.tar.bz2
Move DFSPass back down into DominatorTree. I need to figure out what the difference is between it
and the PostDomTree version first. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42250 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/Dominators.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Dominators.cpp b/lib/VMCore/Dominators.cpp
index 860387f..0fc024b 100644
--- a/lib/VMCore/Dominators.cpp
+++ b/lib/VMCore/Dominators.cpp
@@ -53,7 +53,7 @@ char DominatorTree::ID = 0;
static RegisterPass<DominatorTree>
E("domtree", "Dominator Tree Construction", true);
-unsigned DominatorTreeBase::DFSPass(BasicBlock *V, unsigned N) {
+unsigned DominatorTree::DFSPass(BasicBlock *V, unsigned N) {
// This is more understandable as a recursive algorithm, but we can't use the
// recursive algorithm due to stack depth issues. Keep it here for
// documentation purposes.