mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-06 04:09:04 +00:00
Drop Loop::isNotAlreadyContainedIn in favor of Loop::contains. The
former was just exposing a LoopInfoBase implementation detail. llvm-svn: 91286
This commit is contained in:
parent
5741d33c74
commit
c6a7652b5e
@ -976,13 +976,6 @@ public:
|
||||
void removeBlock(BasicBlock *BB) {
|
||||
LI.removeBlock(BB);
|
||||
}
|
||||
|
||||
static bool isNotAlreadyContainedIn(const Loop *SubLoop,
|
||||
const Loop *ParentLoop) {
|
||||
return
|
||||
LoopInfoBase<BasicBlock, Loop>::isNotAlreadyContainedIn(SubLoop,
|
||||
ParentLoop);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
@ -53,7 +53,7 @@ static bool containsAddRecFromDifferentLoop(const SCEV *S, Loop *L) {
|
||||
if (newLoop == L)
|
||||
return false;
|
||||
// if newLoop is an outer loop of L, this is OK.
|
||||
if (!LoopInfo::isNotAlreadyContainedIn(L, newLoop))
|
||||
if (!newLoop->contains(L->getHeader()))
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user