Skip to content

Commit

Permalink
[LAA] Upper-case variable names, NFC
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243313 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
anemet committed Jul 27, 2015
1 parent 1829d59 commit 150b561
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Analysis/LoopAccessAnalysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,10 @@ RuntimePointerChecking::generateChecks(
const SmallVectorImpl<int> *PtrPartition) const {
SmallVector<PointerCheck, 4> Checks;

for (unsigned i = 0; i < CheckingGroups.size(); ++i) {
for (unsigned j = i + 1; j < CheckingGroups.size(); ++j) {
const RuntimePointerChecking::CheckingPtrGroup &CGI = CheckingGroups[i];
const RuntimePointerChecking::CheckingPtrGroup &CGJ = CheckingGroups[j];
for (unsigned I = 0; I < CheckingGroups.size(); ++I) {
for (unsigned J = I + 1; J < CheckingGroups.size(); ++J) {
const RuntimePointerChecking::CheckingPtrGroup &CGI = CheckingGroups[I];
const RuntimePointerChecking::CheckingPtrGroup &CGJ = CheckingGroups[J];

if (needsChecking(CGI, CGJ, PtrPartition))
Checks.push_back(std::make_pair(&CGI, &CGJ));
Expand Down

0 comments on commit 150b561

Please sign in to comment.