1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

Fix an obvious oops

llvm-svn: 22742
This commit is contained in:
Chris Lattner 2005-08-10 00:59:40 +00:00
parent 5ff2a0dd88
commit 0730ac081a

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);
}