[llvm] r191850 - Fix comment grammar and capitalization.

Matt Arsenault Matthew.Arsenault at amd.com
Wed Oct 2 13:04:27 PDT 2013


Author: arsenm
Date: Wed Oct  2 15:04:26 2013
New Revision: 191850

URL: http://llvm.org/viewvc/llvm-project?rev=191850&view=rev
Log:
Fix comment grammar and capitalization.

Modified:
    llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp

Modified: llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp?rev=191850&r1=191849&r2=191850&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp (original)
+++ llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp Wed Oct  2 15:04:26 2013
@@ -3710,8 +3710,8 @@ bool LoopVectorizationLegality::canVecto
         Stores.push_back(St);
         DepChecker.addAccess(St);
       }
-    } // next instr.
-  } // next block.
+    } // Next instr.
+  } // Next block.
 
   // Now we have two lists that hold the loads and the stores.
   // Next, we find the pointers that they use.
@@ -3805,7 +3805,7 @@ bool LoopVectorizationLegality::canVecto
   if (NumComparisons == 0 && NeedRTCheck)
     NeedRTCheck = false;
 
-  // Check that we did not collect too many pointers or found a unsizeable
+  // Check that we did not collect too many pointers or found an unsizeable
   // pointer.
   if (!CanDoRT || NumComparisons > RuntimeMemoryCheckThreshold) {
     PtrRtCheck.reset();





More information about the llvm-commits mailing list