[llvm] r243313 - [LAA] Upper-case variable names, NFC

Adam Nemet anemet at apple.com
Mon Jul 27 12:38:50 PDT 2015


Author: anemet
Date: Mon Jul 27 14:38:50 2015
New Revision: 243313

URL: http://llvm.org/viewvc/llvm-project?rev=243313&view=rev
Log:
[LAA] Upper-case variable names, NFC

Modified:
    llvm/trunk/lib/Analysis/LoopAccessAnalysis.cpp

Modified: llvm/trunk/lib/Analysis/LoopAccessAnalysis.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LoopAccessAnalysis.cpp?rev=243313&r1=243312&r2=243313&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/LoopAccessAnalysis.cpp (original)
+++ llvm/trunk/lib/Analysis/LoopAccessAnalysis.cpp Mon Jul 27 14:38:50 2015
@@ -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));





More information about the llvm-commits mailing list