diff options
author | Cameron Zwarich <zwarich@apple.com> | 2011-06-13 23:39:23 +0000 |
---|---|---|
committer | Cameron Zwarich <zwarich@apple.com> | 2011-06-13 23:39:23 +0000 |
commit | 15cd80c16b4e63b99dcbe45d2baa9456d414aaca (patch) | |
tree | 632e99dc760e4f190f9ef7c33cccc846c3b1d7ce /lib/Transforms | |
parent | f921c0fe3418f96bd1e37beb582a368d3ac24295 (diff) | |
download | external_llvm-15cd80c16b4e63b99dcbe45d2baa9456d414aaca.zip external_llvm-15cd80c16b4e63b99dcbe45d2baa9456d414aaca.tar.gz external_llvm-15cd80c16b4e63b99dcbe45d2baa9456d414aaca.tar.bz2 |
Fix grammar.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132952 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/ScalarReplAggregates.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/Scalar/ScalarReplAggregates.cpp b/lib/Transforms/Scalar/ScalarReplAggregates.cpp index 43452e2..c0349a1 100644 --- a/lib/Transforms/Scalar/ScalarReplAggregates.cpp +++ b/lib/Transforms/Scalar/ScalarReplAggregates.cpp @@ -233,13 +233,13 @@ class ConvertToScalarInfo { 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 |