blob: 863305ecb4e555e0842cf82c7dcfebf644a7f736 [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
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