[llvm] r244690 - [LAA] Fix typo in test
Adam Nemet via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 11 16:03:10 PDT 2015
Author: anemet
Date: Tue Aug 11 18:03:09 2015
New Revision: 244690
URL: http://llvm.org/viewvc/llvm-project?rev=244690&view=rev
Log:
[LAA] Fix typo in test
Modified:
llvm/trunk/test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll
Modified: llvm/trunk/test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll?rev=244690&r1=244689&r2=244690&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll (original)
+++ llvm/trunk/test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll Tue Aug 11 18:03:09 2015
@@ -4,7 +4,7 @@ target datalayout = "e-m:o-i64:64-f80:12
; We shouldn't quit the analysis if we encounter a pointer without known
; bounds *unless* we actually need to emit a memcheck for it. (We only
-; compute bounds for SCEVAddRecs so A[i*I] is deemed not having known bounds.)
+; compute bounds for SCEVAddRecs so A[i*i] is deemed not having known bounds.)
;
; for (i = 0; i < 20; ++i)
; A[i*i] *= 2;
More information about the llvm-commits
mailing list