aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2010-10-15 15:45:33 +0100
committerJoseph Myers <jsm28@gcc.gnu.org>2010-10-15 15:45:33 +0100
commitfbdaa0b24c010cd9f380ae6bf3843be87f124f4b (patch)
tree848bee8d9fe1936d550fd9bc1f050daab7607676 /gcc/doc
parenta32b99ad60f2df32ed7122cc549afacf708ed492 (diff)
downloadgcc-fbdaa0b24c010cd9f380ae6bf3843be87f124f4b.zip
gcc-fbdaa0b24c010cd9f380ae6bf3843be87f124f4b.tar.gz
gcc-fbdaa0b24c010cd9f380ae6bf3843be87f124f4b.tar.bz2
extend.texi (Variable Length): Don't refer to VLAs not conforming to C99.
* doc/extend.texi (Variable Length): Don't refer to VLAs not conforming to C99. From-SVN: r165509
Diffstat (limited to 'gcc/doc')
-rw-r--r--gcc/doc/extend.texi4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index fc40d53..d39ab48 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -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