diff options
author | Adam Nemet <anemet@apple.com> | 2015-08-11 23:03:09 +0000 |
---|---|---|
committer | Adam Nemet <anemet@apple.com> | 2015-08-11 23:03:09 +0000 |
commit | abc794d3dbc557c66c1e9c2023e0d46cc9ea861e (patch) | |
tree | 4156cfb459d31c752ad330c53d5fc565e0cce7f0 /llvm/test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll | |
parent | a1e5dc86a6306b91caf1bd4c5ed7ca1113405111 (diff) | |
download | bcm5719-llvm-abc794d3dbc557c66c1e9c2023e0d46cc9ea861e.tar.gz bcm5719-llvm-abc794d3dbc557c66c1e9c2023e0d46cc9ea861e.zip |
[LAA] Fix typo in test
llvm-svn: 244690
Diffstat (limited to 'llvm/test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll')
-rw-r--r-- | llvm/test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll b/llvm/test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll index d05849e2be2..5348cfe0542 100644 --- a/llvm/test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll +++ b/llvm/test/Analysis/LoopAccessAnalysis/pointer-with-unknown-bounds.ll @@ -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; |