Correct this inversion!

I swear that didn't show up in svn diff...

llvm-svn: 53587
This commit is contained in:
Nick Lewycky 2008-07-15 03:47:44 +00:00
parent 3752e51311
commit 970914c8c8
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}