mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-21 21:41:43 +00:00
Regression test for initializers with members of unknown size.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10678 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2657aecfe2
commit
a29b94dd5a
12
test/CFrontend/2004-01-01-UnknownInitSize.c
Normal file
12
test/CFrontend/2004-01-01-UnknownInitSize.c
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
* This regression test ensures that the C front end can compile initializers
|
||||
* even when it cannot determine the size (as below).
|
||||
*/
|
||||
struct one
|
||||
{
|
||||
int a;
|
||||
int values [];
|
||||
};
|
||||
|
||||
struct one hobbit = {5, {1, 2, 3}};
|
||||
|
Loading…
x
Reference in New Issue
Block a user