aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaud A. de Grandmaison <arnaud.adegm@gmail.com>2013-02-05 09:06:17 +0000
committerArnaud A. de Grandmaison <arnaud.adegm@gmail.com>2013-02-05 09:06:17 +0000
commit8fcbb8dfbc28b6279d22144e10ade401a6c03e9e (patch)
treeaad35cc50f8975d10d04d3537164bc54c8129ee1
parent77163bc392be75795d58b1f6177a0a4626a57dcb (diff)
Fix typo in comment
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174359 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/CodeGenFunction.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h
index 94faac01ad..d43b58830b 100644
--- a/lib/CodeGen/CodeGenFunction.h
+++ b/lib/CodeGen/CodeGenFunction.h
@@ -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.