Fix a comment.
authorCameron Zwarich <zwarich@apple.com>
Wed, 16 Mar 2011 08:13:42 +0000 (08:13 +0000)
committerCameron Zwarich <zwarich@apple.com>
Wed, 16 Mar 2011 08:13:42 +0000 (08:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127728 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/ScalarReplAggregates.cpp

index 3e7c640b9a8857ace3f4416c3d90af0d72073105..efc0df5ad3a4c1a673031703f5b11c6d6c6c50f7 100644 (file)
@@ -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: