Fix an obvious oops

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22742 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-08-10 00:59:40 +00:00
parent 138268160a
commit 05bd374b1f

View File

@ -2344,7 +2344,7 @@ SCEVHandle ScalarEvolution::getSCEV(Value *V) const {
/// hasSCEV - Return true if the SCEV for this value has already been
/// computed.
bool ScalarEvolution::hasSCEV(Value *V) const {
((ScalarEvolutionsImpl*)Impl)->hasSCEV(V);
return ((ScalarEvolutionsImpl*)Impl)->hasSCEV(V);
}