diff options
| author | Duncan Sands <baldrick@free.fr> | 2010-10-03 15:31:50 +0000 |
|---|---|---|
| committer | Duncan Sands <baldrick@free.fr> | 2010-10-03 15:31:50 +0000 |
| commit | 5db3884d949a31b4feba710000990c088fe90f87 (patch) | |
| tree | 48c6ca8e00856d8cdcb9c3b19d4acd7fd410bf0a | |
| parent | 6d80481b68f0eabd5cfd4df7b608134a765c1cb1 (diff) | |
| download | bcm5719-llvm-5db3884d949a31b4feba710000990c088fe90f87.tar.gz bcm5719-llvm-5db3884d949a31b4feba710000990c088fe90f87.zip | |
GCC extensions are no longer used here - update the comment.
llvm-svn: 115463
| -rw-r--r-- | llvm/include/llvm/ADT/SmallVector.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/ADT/SmallVector.h b/llvm/include/llvm/ADT/SmallVector.h index 4efd6c74906..10ae049ff91 100644 --- a/llvm/include/llvm/ADT/SmallVector.h +++ b/llvm/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; |

