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 | a35af82429e117ec98df9599a350267a63251cf4 (patch) | |
tree | 982584b635780e7721006a7ee9a9437342087ce5 /clang/lib | |
parent | 20e2630877ce03b1f50be30c701e9a6cee4de0ff (diff) | |
download | bcm5719-llvm-a35af82429e117ec98df9599a350267a63251cf4.tar.gz bcm5719-llvm-a35af82429e117ec98df9599a350267a63251cf4.zip |
Fix typo.
llvm-svn: 72308
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/CodeGen/CGExprAgg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGExprAgg.cpp b/clang/lib/CodeGen/CGExprAgg.cpp index 92e535a5f06..81e1a12de7a 100644 --- a/clang/lib/CodeGen/CGExprAgg.cpp +++ b/clang/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()); } } |