Allow array initializers to be arrays themselves.
commit564b555b2253a5f6618365fa0a6d957ff1074e95
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Thu, 29 Jul 2004 19:53:38 +0000 (29 12:53 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Fri, 8 Apr 2005 04:02:25 +0000 (7 21:02 -0700)
tree8ec38b7cec1543c6ee169e0b1e2bcf747dc07db7
parent3cbd300235d64123ba26b1acaf3ed68807ed523d
Allow array initializers to be arrays themselves.

This allows us to do

char a[] = { 'a', "bc" };

and C99 things like

int i = sizeof (char[]) { "hello" };
evaluate.c