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 | 922e4940bd68b377e73abfe638a339dd1b79c09d (patch) | |
tree | 9107da7a760a67b3a07e1de2df5c320b115f3a23 /llvm/lib/Transforms/Scalar | |
parent | 143b39fba49eb8be6c14360e86b9e3351bd33c60 (diff) | |
download | bcm5719-llvm-922e4940bd68b377e73abfe638a339dd1b79c09d.tar.gz bcm5719-llvm-922e4940bd68b377e73abfe638a339dd1b79c09d.zip |
Fix grammar.
llvm-svn: 132952
Diffstat (limited to 'llvm/lib/Transforms/Scalar')
-rw-r--r-- | llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp b/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp index 43452e25369..c0349a16f85 100644 --- a/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp +++ b/llvm/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 |