[llvm-commits] CVS: llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
Nate Begeman
natebegeman at mac.com
Fri Jul 29 17:21:42 PDT 2005
Changes in directory llvm/lib/Transforms/Scalar:
LoopStrengthReduce.cpp updated: 1.14 -> 1.15
---
Log message:
Ack, typo
---
Diffs of the changes: (+1 -1)
LoopStrengthReduce.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
diff -u llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp:1.14 llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp:1.15
--- llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp:1.14 Fri Jul 29 19:15:07 2005
+++ llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp Fri Jul 29 19:21:31 2005
@@ -331,7 +331,7 @@
/// 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;
More information about the llvm-commits
mailing list