diff options
author | Chris Lattner <sabre@nondot.org> | 2005-08-10 00:59:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-08-10 00:59:40 +0000 |
commit | 35c0e2ee33f9c72a22117b39acdac463a73dbd95 (patch) | |
tree | 305755071ad56f19262c606570b572e026bf1b08 | |
parent | 08c7fd19e1932ab5973172c26791c085144505b9 (diff) | |
download | bcm5719-llvm-35c0e2ee33f9c72a22117b39acdac463a73dbd95.tar.gz bcm5719-llvm-35c0e2ee33f9c72a22117b39acdac463a73dbd95.zip |
Fix an obvious oops
llvm-svn: 22742
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index 1f798bc8b09..349979843a5 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/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); } |