[llvm-commits] [llvm] r132952 - /llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp

Cameron Zwarich zwarich at apple.com
Mon Jun 13 16:39:23 PDT 2011


Author: zwarich
Date: Mon Jun 13 18:39:23 2011
New Revision: 132952

URL: http://llvm.org/viewvc/llvm-project?rev=132952&view=rev
Log:
Fix grammar.

Modified:
    llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp?rev=132952&r1=132951&r2=132952&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp Mon Jun 13 18:39:23 2011
@@ -233,13 +233,13 @@
   enum {
     Unknown,
 
-    // An access via GEPs that is consistent with element access of a vector
+    // Accesses via GEPs that are consistent with element access of a vector
     // type. This will not be converted into a vector unless there is a later
     // access using an actual vector type.
     ImplicitVector,
 
-    // An access via vector operations and possibly GEPs that are consistent
-    // with the layout of the vector type.
+    // Accesses via vector operations and GEPs that are consistent with the
+    // layout of a vector type.
     Vector,
 
     // An integer bag-of-bits with bitwise operations for insertion and





More information about the llvm-commits mailing list