1 | // RUN: %clang_cc1 -emit-llvm %s -o /dev/null |
---|---|
2 | |
3 | /* GCC would generate bad code if not enough initializers are |
4 | specified for an array. |
5 | */ |
6 | |
7 | int a[10] = { 0, 2}; |
8 | |
9 | char str[10] = "x"; |
10 | |
11 | void *Arr[5] = { 0, 0 }; |
12 | |
13 | float F[12] = { 1.23f, 34.7f }; |
14 | |
15 | struct Test { int X; double Y; }; |
16 | |
17 | struct Test Array[10] = { { 2, 12.0 }, { 3, 24.0 } }; |
18 | |
19 | int B[4][4] = { { 1, 2, 3, 4}, { 5, 6, 7 }, { 8, 9 } }; |
20 |