summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-08-10 00:59:40 +0000
committerChris Lattner <sabre@nondot.org>2005-08-10 00:59:40 +0000
commit35c0e2ee33f9c72a22117b39acdac463a73dbd95 (patch)
tree305755071ad56f19262c606570b572e026bf1b08 /llvm/lib/Analysis
parent08c7fd19e1932ab5973172c26791c085144505b9 (diff)
downloadbcm5719-llvm-35c0e2ee33f9c72a22117b39acdac463a73dbd95.tar.gz
bcm5719-llvm-35c0e2ee33f9c72a22117b39acdac463a73dbd95.zip
Fix an obvious oops
llvm-svn: 22742
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r--llvm/lib/Analysis/ScalarEvolution.cpp2
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);
}
OpenPOWER on IntegriCloud