diff options
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp b/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp index 85db734fb18..305b87ea287 100644 --- a/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp +++ b/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp @@ -512,6 +512,13 @@ bool llvm::UnrollRuntimeLoopRemainder(Loop *L, unsigned Count,    BasicBlock *Latch = L->getLoopLatch(); +  // Cloning the loop basic blocks (`CloneLoopBlocks`) requires that one of the +  // targets of the Latch be the single exit block out of the loop. This needs +  // to be guaranteed by the callers of UnrollRuntimeLoopRemainder. +  BranchInst *LatchBR = cast<BranchInst>(Latch->getTerminator()); +  assert(LatchBR->getSuccessor(0) == Exit || +         LatchBR->getSuccessor(1) == Exit && "loop latch successor should be " +                                             "exit block!");    // Loop structure is the following:    //    // PreHeader  | 

