From 7d74963b97517a74141a9ea475b2d23e9c93d1f1 Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Sat, 23 May 2009 02:02:29 +0000 Subject: [PATCH] Fix typo. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72308 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CGExprAgg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } } -- 2.50.1