]> granicus.if.org Git - clang/commitdiff
Fix typo in comment
authorArnaud A. de Grandmaison <arnaud.adegm@gmail.com>
Tue, 5 Feb 2013 09:06:17 +0000 (09:06 +0000)
committerArnaud A. de Grandmaison <arnaud.adegm@gmail.com>
Tue, 5 Feb 2013 09:06:17 +0000 (09:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174359 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CodeGenFunction.h

index 94faac01ad22430f4a4a0df1dfbce7850b5aea8e..d43b58830bd8aed23f36893ee1543af1037f9ed3 100644 (file)
@@ -1676,7 +1676,7 @@ public:
     }
     return false;
   }
-  /// EmitAggregateCopy - Emit an aggrate assignment.
+  /// EmitAggregateCopy - Emit an aggregate assignment.
   ///
   /// The difference to EmitAggregateCopy is that tail padding is not copied.
   /// This is required for correctness when assigning non-POD structures in C++.
@@ -1687,7 +1687,7 @@ public:
                       true);
   }
 
-  /// EmitAggregateCopy - Emit an aggrate copy.
+  /// EmitAggregateCopy - Emit an aggregate copy.
   ///
   /// \param isVolatile - True iff either the source or the destination is
   /// volatile.