diff options
author | Cameron Zwarich <zwarich@apple.com> | 2011-03-16 08:13:42 +0000 |
---|---|---|
committer | Cameron Zwarich <zwarich@apple.com> | 2011-03-16 08:13:42 +0000 |
commit | 1bcdb6ffad79936a96b46080bf0fed867243b32a (patch) | |
tree | a839dbb1cae711550cae47685355df330c3b887a /lib/Transforms | |
parent | 7a7215b563ad03d499742612d7d595b9299664b7 (diff) |
Fix a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127728 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 3e7c640b9a..efc0df5ad3 100644 --- a/lib/Transforms/Scalar/ScalarReplAggregates.cpp +++ b/lib/Transforms/Scalar/ScalarReplAggregates.cpp @@ -238,9 +238,9 @@ class ConvertToScalarInfo { /// also declared as a vector, we do want to promote to a vector. bool HadAVector; - /// HadAVector - True if there is at least one access to the alloca that is - /// not a MemTransferInst. We don't want to turn structs into large integers - /// unless there is some potential for optimization. + /// HadNonMemTransferAccess - True if there is at least one access to the + /// alloca that is not a MemTransferInst. We don't want to turn structs into + /// large integers unless there is some potential for optimization. bool HadNonMemTransferAccess; public: |