GCC extensions are no longer used here - update the comment.
authorDuncan Sands <baldrick@free.fr>
Sun, 3 Oct 2010 15:31:50 +0000 (15:31 +0000)
committerDuncan Sands <baldrick@free.fr>
Sun, 3 Oct 2010 15:31:50 +0000 (15:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115463 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/SmallVector.h

index 4efd6c7490628f6a596ad73b8dc50186cb013b6a..10ae049ff91fc2d3c9c95a56c31aff5a8b04984f 100644 (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;