Fix a thinko; isNotAlreadyContainedIn had a built-in negative, so the

condition was inverted when the code was converted to contains().


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91295 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-12-14 17:31:01 +00:00
parent c71c0e958c
commit 30844c3950
2 changed files with 2 additions and 2 deletions

View File

@ -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 (!newLoop->contains(L->getHeader()))
if (newLoop->contains(L->getHeader()))
return false;
}
return true;

View File

@ -250,7 +250,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 (!newLoop->contains(L->getHeader()))
if (newLoop->contains(L->getHeader()))
return false;
}
return true;