diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-22 23:12:29 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-22 23:12:29 +0000 |
commit | e6c172ed1166569c2ba09c2d80ba70b5081c2a26 (patch) | |
tree | f8959fdd1818cd96126e42cc4ebcbcb497abeb58 /gcc/doc/standards.texi | |
parent | f6991537176f27ee9effef545e2f514417dfd3bf (diff) | |
download | gcc-e6c172ed1166569c2ba09c2d80ba70b5081c2a26.tar.gz |
PR c/14050
* c-decl.c (set_array_declarator_inner): Don't give error for
static or type qualifiers in abstract declarator. Remove
abstract_p parameter.
* c-tree.h (set_array_declarator_inner): Update prototype.
* c-parser.c (c_parser_direct_declarator_inner): Update call to
set_array_declarator_inner.
* doc/standards.texi: Update for C99 TC3.
testsuite:
* gcc.dg/c99-arraydecl-1.c: Don't expect errors for static or type
qualifiers in abstract declarator.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@130362 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/standards.texi')
-rw-r--r-- | gcc/doc/standards.texi | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/doc/standards.texi b/gcc/doc/standards.texi index ddee01a5a01..6b5e15bc476 100644 --- a/gcc/doc/standards.texi +++ b/gcc/doc/standards.texi @@ -37,6 +37,8 @@ with some exceptions, and possibly with some extensions. @cindex Technical Corrigendum 1 @cindex TC2 @cindex Technical Corrigendum 2 +@cindex TC3 +@cindex Technical Corrigendum 3 @cindex AMD1 @cindex freestanding implementation @cindex freestanding environment @@ -86,9 +88,9 @@ standard, use @option{-std=c99} or @option{-std=iso9899:1999}. (While in development, drafts of this standard version were referred to as @dfn{C9X}.) -Errors in the 1999 ISO C standard were corrected in two Technical -Corrigenda published in 2001 and 2004. GCC does not support the uncorrected -version. +Errors in the 1999 ISO C standard were corrected in three Technical +Corrigenda published in 2001, 2004 and 2007. GCC does not support the +uncorrected version. By default, GCC provides some extensions to the C language that on rare occasions conflict with the C standard. @xref{C |