aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2005-07-30 00:21:31 +0000
committerNate Begeman <natebegeman@mac.com>2005-07-30 00:21:31 +0000
commitf84d5ab5df5900dcaf90df8d83c16b6cea22f087 (patch)
tree6feac1680a5a4e53ee73d8421fb9f5522de8f913 /lib/Transforms
parenta35e1dfd12b9eaa440af68c760394bef9ac17335 (diff)
Ack, typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22560 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Scalar/LoopStrengthReduce.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp
index 6df3e782c8..090bf1b009 100644
--- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp
+++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp
@@ -331,7 +331,7 @@ void LoopStrengthReduce::AnalyzeGetElementPtrUsers(GetElementPtrInst *GEP,
/// reducible SCEV, recursively add its users to the IVUsesByStride set and
/// return true. Otherwise, return false.
bool LoopStrengthReduce::AddUsersIfInteresting(Instruction *I, Loop *L) {
- if (I->getType() == Type::VoidTy) return false
+ if (I->getType() == Type::VoidTy) return false;
SCEVHandle ISE = SE->getSCEV(I);
if (!CanReduceSCEV(ISE, L)) return false;