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 | 7599b106b71ca13bcdc1d70671d6f3b18c795d1e (patch) | |
tree | 0bd7a39a7ff49f694e27ff577c1e403ed4302408 /llvm/lib/Transforms | |
parent | 35c70f64db03b74f09846e8b38f5ba10cb84a32a (diff) | |
download | bcm5719-llvm-7599b106b71ca13bcdc1d70671d6f3b18c795d1e.tar.gz bcm5719-llvm-7599b106b71ca13bcdc1d70671d6f3b18c795d1e.zip |
Fix a comment.
llvm-svn: 127728
Diffstat (limited to 'llvm/lib/Transforms')
-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 3e7c640b9a8..efc0df5ad3a 100644 --- a/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp +++ b/llvm/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: |