mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-10 22:00:58 +00:00
Fix a thinko; isNotAlreadyContainedIn had a built-in negative, so the
condition was inverted when the code was converted to contains(). llvm-svn: 91295
This commit is contained in:
parent
ea5d4d2354
commit
abb2ea84d9
@ -53,7 +53,7 @@ static bool containsAddRecFromDifferentLoop(const SCEV *S, Loop *L) {
|
|||||||
if (newLoop == L)
|
if (newLoop == L)
|
||||||
return false;
|
return false;
|
||||||
// if newLoop is an outer loop of L, this is OK.
|
// if newLoop is an outer loop of L, this is OK.
|
||||||
if (!newLoop->contains(L->getHeader()))
|
if (newLoop->contains(L->getHeader()))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
@ -250,7 +250,7 @@ static bool containsAddRecFromDifferentLoop(const SCEV *S, Loop *L) {
|
|||||||
if (newLoop == L)
|
if (newLoop == L)
|
||||||
return false;
|
return false;
|
||||||
// if newLoop is an outer loop of L, this is OK.
|
// if newLoop is an outer loop of L, this is OK.
|
||||||
if (!newLoop->contains(L->getHeader()))
|
if (newLoop->contains(L->getHeader()))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user