mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 01:12:59 +00:00
Correct this inversion!
I swear that didn't show up in svn diff... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53587 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
86dae65baa
commit
8ae38e1516
@ -2675,7 +2675,7 @@ bool ScalarEvolutionsImpl::executesAtLeastOnce(const Loop *L, bool isSigned,
|
||||
return false;
|
||||
}
|
||||
|
||||
if (PreCondLHS->getType()->isInteger()) return false;
|
||||
if (!PreCondLHS->getType()->isInteger()) return false;
|
||||
|
||||
return LHS == getSCEV(PreCondLHS) && RHS == getSCEV(PreCondRHS);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user