GCC extensions are no longer used here - update the comment.

llvm-svn: 115463
This commit is contained in:
Duncan Sands 2010-10-03 15:31:50 +00:00
parent 6d80481b68
commit 5db3884d94
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ protected:
// Allocate raw space for N elements of type T. If T has a ctor or dtor, we
// don't want it to be automatically run, so we need to represent the space as
// something else. An array of char would work great, but might not be
// aligned sufficiently. Instead, we either use GCC extensions, or some
// number of union instances for the space, which guarantee maximal alignment.
// aligned sufficiently. Instead we use some number of union instances for
// the space, which guarantee maximal alignment.
union U {
double D;
long double LD;