extend.texi (Variable Length): Don't refer to VLAs not conforming to C99.
authorJoseph Myers <joseph@codesourcery.com>
Fri, 15 Oct 2010 14:45:33 +0000 (15:45 +0100)
committerJoseph Myers <jsm28@gcc.gnu.org>
Fri, 15 Oct 2010 14:45:33 +0000 (15:45 +0100)
* doc/extend.texi (Variable Length): Don't refer to VLAs not
conforming to C99.

From-SVN: r165509

gcc/ChangeLog
gcc/doc/extend.texi

index 271988a054240303f9b83185ca2da824d2e79689..c634624000eed18fac09a32897dfe3b549b1d00b 100644 (file)
@@ -1,3 +1,8 @@
+2010-10-15  Joseph Myers  <joseph@codesourcery.com>
+
+       * doc/extend.texi (Variable Length): Don't refer to VLAs not
+       conforming to C99.
+
 2010-10-15  Joseph Myers  <joseph@codesourcery.com>
 
        * config/rx/rx.c (rx_option_optimization): Change to
index fc40d5301ce43d8d032ba228c24f6021e1a494ca..d39ab487b9759b47c7b1cbea02bc24d84c56b438 100644 (file)
@@ -1358,9 +1358,7 @@ member of type @code{char}.
 @cindex VLAs
 
 Variable-length automatic arrays are allowed in ISO C99, and as an
-extension GCC accepts them in C90 mode and in C++.  (However, GCC's
-implementation of variable-length arrays does not yet conform in detail
-to the ISO C99 standard.)  These arrays are
+extension GCC accepts them in C90 mode and in C++.  These arrays are
 declared like any other automatic arrays, but with a length that is not
 a constant expression.  The storage is allocated at the point of
 declaration and deallocated when the brace-level is exited.  For