blob: 7de3aba41acfd4118e6af9d7f3f638d2daaa8bbf [file] [log] [blame]
Chris Lattner0157ac22004-11-22 19:11:40 +00001// RUN: %llvmgcc -S %s -o /dev/null
Tanya Lattnerca211872004-11-06 22:41:00 +00002
John Criswell2c501ec2004-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).
John Criswell02fa6732004-12-08 16:31:06 +00006 * XFAIL: *
Tanya Lattner1d28bda2004-11-06 20:38:27 +00007*/
John Criswell2c501ec2004-01-01 23:58:07 +00008struct one
9{
10 int a;
11 int values [];
12};
13
14struct one hobbit = {5, {1, 2, 3}};
15