summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2010-10-03 15:31:50 +0000
committerDuncan Sands <baldrick@free.fr>2010-10-03 15:31:50 +0000
commit5dd76fa50a63c6460957d11d2542469f0a7d65d7 (patch)
tree7d47935a2ad31baef0d110f22e39d9963ec76f96 /include
parent75e2016f02428289e9cfd693a27bcd9a2a5cc00f (diff)
downloadllvm-5dd76fa50a63c6460957d11d2542469f0a7d65d7.tar.gz
llvm-5dd76fa50a63c6460957d11d2542469f0a7d65d7.tar.bz2
llvm-5dd76fa50a63c6460957d11d2542469f0a7d65d7.tar.xz
GCC extensions are no longer used here - update the comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115463 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/ADT/SmallVector.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/ADT/SmallVector.h b/include/llvm/ADT/SmallVector.h
index 4efd6c7490..10ae049ff9 100644
--- a/include/llvm/ADT/SmallVector.h
+++ b/include/llvm/ADT/SmallVector.h
@@ -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;