[LAA] Upper-case variable names, NFC
authorAdam Nemet <anemet@apple.com>
Mon, 27 Jul 2015 19:38:50 +0000 (19:38 +0000)
committerAdam Nemet <anemet@apple.com>
Mon, 27 Jul 2015 19:38:50 +0000 (19:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243313 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/LoopAccessAnalysis.cpp

index 48f2379ebec65015f86fe4aeefea63e007013e68..b66087f4fc4f075288d85b4bbfce6f2851a36191 100644 (file)
@@ -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));