diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 271988a0542..c634624000e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-10-15 Joseph Myers + + * doc/extend.texi (Variable Length): Don't refer to VLAs not + conforming to C99. + 2010-10-15 Joseph Myers * config/rx/rx.c (rx_option_optimization): Change to diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index fc40d5301ce..d39ab487b97 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