blob: ebb5aa3dfba914434966ea70f6d3ead1a12e0697 [file] [log] [blame]
Chris Lattnere22dddb2002-03-12 17:45:36 +00001/* GCC would generate bad code if not enough initializers are
2 specified for an array.
3 */
4
5int a[10] = { 0, 2};
6
7char str[10] = "x";
8
9void *Arr[5] = { 0, 0 };
10
11float F[12] = { 1.23f, 34.7f };
12
13struct Test { int X; double Y; };
14
15struct Test Array[10] = { { 2, 12.0 }, { 3, 24.0 } };
16
17int B[4][4] = { { 1, 2, 3, 4}, { 5, 6, 7 }, { 8, 9 } };