blob: b26b6cd87560be65b65a0a946de99e75d4163c3b [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).
Tanya Lattner1d28bda2004-11-06 20:38:27 +00006*/
John Criswell2c501ec2004-01-01 23:58:07 +00007struct one
8{
9 int a;
10 int values [];
11};
12
13struct one hobbit = {5, {1, 2, 3}};
14