[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / clang / test / CodeGen / 2004-01-01-UnknownInitSize.c
blob25ddebddccb06dd068d93551bec928a7a1dbd304
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3 /*
4 * This regression test ensures that the C front end can compile initializers
5 * even when it cannot determine the size (as below).
6 */
7 struct one
9 int a;
10 int values [];
13 struct one hobbit = {5, {1, 2, 3}};