diff options
author | Owen Anderson <resistor@mac.com> | 2011-01-03 23:51:56 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2011-01-03 23:51:56 +0000 |
commit | 0839d3930a96b1a8b8503f32ae6bf44829c38ca1 (patch) | |
tree | a9e4d3cf1c9472e332b23c65ab5d8237ab9b05c1 /llvm/lib/Transforms | |
parent | d62d37225ac53245981c23fdbb671aa7cf81270d (diff) | |
download | bcm5719-llvm-0839d3930a96b1a8b8503f32ae6bf44829c38ca1.tar.gz bcm5719-llvm-0839d3930a96b1a8b8503f32ae6bf44829c38ca1.zip |
Fix comment.
llvm-svn: 122788
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp b/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp index dc55848d35f..52fc2636ac3 100644 --- a/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp +++ b/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp @@ -250,7 +250,7 @@ bool LoopIdiomRecognize::processLoopStore(StoreInst *SI, const SCEV *BECount) { const SCEVConstant *Stride = dyn_cast<SCEVConstant>(StoreEv->getOperand(1)); // TODO: Could also handle negative stride here someday, that will require the - // validity check in mayLoopModRefLocation to be updated though. + // validity check in mayLoopAccessLocation to be updated though. if (Stride == 0 || StoreSize != Stride->getValue()->getValue()) return false; |