diff options
author | Zhou Sheng <zhousheng00@gmail.com> | 2007-07-06 06:01:16 +0000 |
---|---|---|
committer | Zhou Sheng <zhousheng00@gmail.com> | 2007-07-06 06:01:16 +0000 |
commit | 33b0b8d242de8d428f11e77ea734a08b47797216 (patch) | |
tree | ec660bbc330b7cf52c6ffa5ba11cf96dac12d155 | |
parent | 86da6600aec9b8f1c3fbae157414bf1648eb639c (diff) |
Correct a typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37936 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/ScalarReplAggregates.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/ScalarReplAggregates.cpp b/lib/Transforms/Scalar/ScalarReplAggregates.cpp index 8e01cce7b1..e31fdd16e1 100644 --- a/lib/Transforms/Scalar/ScalarReplAggregates.cpp +++ b/lib/Transforms/Scalar/ScalarReplAggregates.cpp @@ -79,7 +79,7 @@ namespace { /// isMemCpySrc - This is true if this aggregate is memcpy'd from. bool isMemCpySrc : 1; - /// isMemCpyDst - This is true if this aggregate is memcpy'd info. + /// isMemCpyDst - This is true if this aggregate is memcpy'd into. bool isMemCpyDst : 1; AllocaInfo() |