[LAA] Fix typo in test
authorAdam Nemet <anemet@apple.com>
Tue, 11 Aug 2015 23:03:09 +0000 (23:03 +0000)
committerAdam Nemet <anemet@apple.com>
Tue, 11 Aug 2015 23:03:09 +0000 (23:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244690 91177308-0d34-0410-b5e6-96231b3b80d8

test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll

index d05849e2be2d5976ed0a117b66fb3bffd68b284b..5348cfe0542752b32d6874bba105f5773d0e6c75 100644 (file)
@@ -4,7 +4,7 @@ target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
 
 ; 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;