diff options
author | Mike Stump <mrs@apple.com> | 2009-05-23 02:02:29 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-05-23 02:02:29 +0000 |
commit | 7d74963b97517a74141a9ea475b2d23e9c93d1f1 (patch) | |
tree | 6ac086a051254e47922e5995013f8cf50ac034af /lib/CodeGen/CGExprAgg.cpp | |
parent | 15dffd863b4d8f6f7b04b5c80566ea3531a14f41 (diff) |
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72308 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprAgg.cpp')
-rw-r--r-- | lib/CodeGen/CGExprAgg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGExprAgg.cpp b/lib/CodeGen/CGExprAgg.cpp index 92e535a5f0..81e1a12de7 100644 --- a/lib/CodeGen/CGExprAgg.cpp +++ b/lib/CodeGen/CGExprAgg.cpp @@ -252,7 +252,7 @@ void AggExprEmitter::VisitBinAssign(const BinaryOperator *E) { if (DestPtr == 0) return; - // If the result of the assignment is used, copy the RHS there also. + // If the result of the assignment is used, copy the LHS there also. CGF.EmitAggregateCopy(DestPtr, LHS.getAddress(), E->getType()); } } |