From: Chris Lattner Date: Wed, 10 Aug 2005 00:59:40 +0000 (+0000) Subject: Fix an obvious oops X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=05bd374b1f22b74baf1dc087c8c2d128c1e299aa;p=oota-llvm.git Fix an obvious oops git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22742 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index 1f798bc8b09..349979843a5 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -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); }