New testcase, distilled from ed-0.2
[oota-llvm.git] / test / CFrontend / 2002-03-12-ArrayInitialization.c
1 /* GCC would generate bad code if not enough initializers are 
2    specified for an array.
3  */
4
5 int a[10] = { 0, 2};
6
7 char str[10] = "x";
8
9 void *Arr[5] = { 0, 0 };
10
11 float F[12] = { 1.23f, 34.7f };
12
13 struct Test { int X; double Y; };
14
15 struct Test Array[10] = { { 2, 12.0 }, { 3, 24.0 } };
16
17 int B[4][4] = { { 1, 2, 3, 4}, { 5, 6, 7 }, { 8, 9 } };