This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: C99 Status
- From: Ingo Krabbe <i dot krabbe at dokom dot net>
- To: <gcc at gcc dot gnu dot org>,"You" <jim at fortunet dot com>
- Date: Tue, 12 Feb 2002 11:10:10 +0100
- Subject: Re: C99 Status
- Organization: ask (automatische system komponenten)
- References: <000501c1b327$c2c3e8c0$500210ac@fortunet>
On Monday, 11. February 2002 19:13, Me wrote:
> http://www.gnu.org/software/gcc/c99status.html
>
> Perhaps I have missed what it is called... ISO/IEC 9899:1999 (E) Section
> 6.7.8 Initialization paragraphs 6-7 are about specifying initializations
> for arrays and array/unions by name/reference.... I don't see a reference
> of this point in the GCC C99 compliance pages...
> Jim
Is it possible that gcc already knows any of these initializer rules. I have
read Section 6.7.8 and made some short tests. I found no problem with C99
initializations like
struct abc { int a; int b; int c; };
struct abc abc = { .a=5, .b=6; .c=2; };
Funny thing, I have never seen such a structure.
CU INGO