Fix build due to renaming in LoopInfo.

This commit is contained in:
Michael Liao 2020-09-22 17:33:38 -04:00
parent fdc41e11f9
commit d4e3e1e548
1 changed files with 1 additions and 1 deletions

View File

@ -1390,7 +1390,7 @@ TEST_F(LoopPassManagerTest, LoopDeletion) {
// have no PHI nodes and there is always a single i-dom.
auto EraseLoop = [](Loop &L, BasicBlock &IDomBB,
LoopStandardAnalysisResults &AR, LPMUpdater &Updater) {
assert(L.empty() && "Can only delete leaf loops with this routine!");
assert(L.isInnermost() && "Can only delete leaf loops with this routine!");
SmallVector<BasicBlock *, 4> LoopBBs(L.block_begin(), L.block_end());
Updater.markLoopAsDeleted(L, L.getName());
IDomBB.getTerminator()->replaceUsesOfWith(L.getHeader(),