Add support for frame pointers, and large offsets from stack and frame pointers....
[oota-llvm.git] / test / CFrontend / 2004-01-01-UnknownInitSize.c
1 /*
2  * This regression test ensures that the C front end can compile initializers
3  * even when it cannot determine the size (as below).
4  */
5 struct one
6 {
7   int a;
8   int values [];
9 };
10
11 struct one hobbit = {5, {1, 2, 3}};
12