commit | 05bd374b1f22b74baf1dc087c8c2d128c1e299aa | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Wed Aug 10 00:59:40 2005 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Wed Aug 10 00:59:40 2005 +0000 |
tree | 7ee60cc9cd5faca02af60c0f8ac5922815fc80a7 | |
parent | 138268160adf9bd1c31a213ec74d1b3effb10856 [diff] [blame] |
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 1f798bc..3499798 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp
@@ -2344,7 +2344,7 @@ /// 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); }