aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/StructurizeCFG.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-11-25 05:23:10 +0000
committerBill Wendling <isanbard@gmail.com>2013-11-25 05:23:10 +0000
commite96466ecc0b2bdee0bed2156e12dc16f4adb2d50 (patch)
treead1663cc50fdf5e901cd569ddb4dfc30de8f1b4a /lib/Transforms/Scalar/StructurizeCFG.cpp
parent215aad562cbff81f5b1ce5b570076b88a87998f8 (diff)
downloadexternal_llvm-e96466ecc0b2bdee0bed2156e12dc16f4adb2d50.zip
external_llvm-e96466ecc0b2bdee0bed2156e12dc16f4adb2d50.tar.gz
external_llvm-e96466ecc0b2bdee0bed2156e12dc16f4adb2d50.tar.bz2
Merging r195493:
------------------------------------------------------------------------ r195493 | arsenm | 2013-11-22 11:24:39 -0800 (Fri, 22 Nov 2013) | 6 lines StructurizeCFG: Fix verification failure with some loops. If the beginning of the loop was also the entry block of the function, branches were inserted to the entry block which isn't allowed. If this occurs, create a new dummy function entry block that branches to the start of the loop. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@195606 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/StructurizeCFG.cpp')
-rw-r--r--lib/Transforms/Scalar/StructurizeCFG.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/StructurizeCFG.cpp b/lib/Transforms/Scalar/StructurizeCFG.cpp
index 0124dfd..5045ff8 100644
--- a/lib/Transforms/Scalar/StructurizeCFG.cpp
+++ b/lib/Transforms/Scalar/StructurizeCFG.cpp
@@ -779,6 +779,20 @@ void StructurizeCFG::handleLoops(bool ExitUseAllowed,
handleLoops(false, LoopEnd);
}
+ // If the start of the loop is the entry block, we can't branch to it so
+ // insert a new dummy entry block.
+ Function *LoopFunc = LoopStart->getParent();
+ if (LoopStart == &LoopFunc->getEntryBlock()) {
+ LoopStart->setName("entry.orig");
+
+ BasicBlock *NewEntry =
+ BasicBlock::Create(LoopStart->getContext(),
+ "entry",
+ LoopFunc,
+ LoopStart);
+ BranchInst::Create(LoopStart, NewEntry);
+ }
+
// Create an extra loop end node
LoopEnd = needPrefix(false);
BasicBlock *Next = needPostfix(LoopEnd, ExitUseAllowed);