]> granicus.if.org Git - clang/commitdiff
Fix typo.
authorMike Stump <mrs@apple.com>
Sat, 23 May 2009 02:02:29 +0000 (02:02 +0000)
committerMike Stump <mrs@apple.com>
Sat, 23 May 2009 02:02:29 +0000 (02:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72308 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGExprAgg.cpp

index 92e535a5f062d65c98844738cc51457992415213..81e1a12de7a2a5ba7749ca640b93120a5e742690 100644 (file)
@@ -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());
   }
 }