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