blob: c021c7a108353c556fee3fa9603e9e36bdf79a83 [file] [log] [blame]
Chris Lattnerb9849702004-11-22 19:11:40 +00001// RUN: %llvmgcc -S %s -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
John Criswella29b94d2004-01-01 23:58:07 +00003/*
4 * This regression test ensures that the C front end can compile initializers
5 * even when it cannot determine the size (as below).
Tanya Lattner12ff9682004-11-06 20:38:27 +00006 * XFAIL: linux,darwin
7*/
John Criswella29b94d2004-01-01 23:58:07 +00008struct one
9{
10 int a;
11 int values [];
12};
13
14struct one hobbit = {5, {1, 2, 3}};
15