OSDN Git Service

Ack, typo
authorNate Begeman <natebegeman@mac.com>
Sat, 30 Jul 2005 00:21:31 +0000 (00:21 +0000)
committerNate Begeman <natebegeman@mac.com>
Sat, 30 Jul 2005 00:21:31 +0000 (00:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22560 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopStrengthReduce.cpp

index 6df3e78..090bf1b 100644 (file)
@@ -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;