aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/LoopSimplify.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-02-27 22:48:57 +0000
committerChris Lattner <sabre@nondot.org>2003-02-27 22:48:57 +0000
commit9f879cfb0a93bf34818fb68e1dc209d47a7d24f3 (patch)
tree16898bb20a889ae5dc16261f13e9eab685f36dcb /lib/Transforms/Utils/LoopSimplify.cpp
parent6bc428133645e0a4308c1420c1693685e5f0a6f8 (diff)
Fix bug: 2003-02-27-PreheaderExitNodeUpdate.ll by updating exit node info
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5664 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LoopSimplify.cpp')
-rw-r--r--lib/Transforms/Utils/LoopSimplify.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/Transforms/Utils/LoopSimplify.cpp b/lib/Transforms/Utils/LoopSimplify.cpp
index e40f1457ae..c5adfd2553 100644
--- a/lib/Transforms/Utils/LoopSimplify.cpp
+++ b/lib/Transforms/Utils/LoopSimplify.cpp
@@ -192,6 +192,22 @@ void Preheaders::InsertPreheaderForLoop(Loop *L) {
// We know that we have loop information to update... update it now.
if (Loop *Parent = L->getParentLoop())
Parent->addBasicBlockToLoop(NewBB, getAnalysis<LoopInfo>());
+
+ // If the header for the loop used to be an exit node for another loop, then
+ // we need to update this to know that the loop-preheader is now the exit
+ // node. Note that the only loop that could have our header as an exit node
+ // is a sibling loop, ie, one with the same parent loop.
+ const std::vector<Loop*> *ParentSubLoops;
+ if (Loop *Parent = L->getParentLoop())
+ ParentSubLoops = &Parent->getSubLoops();
+ else // Must check top-level loops...
+ ParentSubLoops = &getAnalysis<LoopInfo>().getTopLevelLoops();
+
+ // Loop over all sibling loops, performing the substitution...
+ for (unsigned i = 0, e = ParentSubLoops->size(); i != e; ++i)
+ if ((*ParentSubLoops)[i]->hasExitBlock(Header))
+ (*ParentSubLoops)[i]->changeExitBlock(Header, NewBB);
+
DominatorSet &DS = getAnalysis<DominatorSet>(); // Update dominator info
{