[llvm-commits] [llvm] r127728 - /llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp
Cameron Zwarich
zwarich at apple.com
Wed Mar 16 01:13:42 PDT 2011
Author: zwarich
Date: Wed Mar 16 03:13:42 2011
New Revision: 127728
URL: http://llvm.org/viewvc/llvm-project?rev=127728&view=rev
Log:
Fix a comment.
Modified:
llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp?rev=127728&r1=127727&r2=127728&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp Wed Mar 16 03:13:42 2011
@@ -238,9 +238,9 @@
/// 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:
More information about the llvm-commits
mailing list