[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGen / 2002-03-12-ArrayInitialization.c
blobf05b83861bab0f72eff07a2f464ffe7534822c8e
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3 /* GCC would generate bad code if not enough initializers are
4 specified for an array.
5 */
7 int a[10] = { 0, 2};
9 char str[10] = "x";
11 void *Arr[5] = { 0, 0 };
13 float F[12] = { 1.23f, 34.7f };
15 struct Test { int X; double Y; };
17 struct Test Array[10] = { { 2, 12.0 }, { 3, 24.0 } };
19 int B[4][4] = { { 1, 2, 3, 4}, { 5, 6, 7 }, { 8, 9 } };