diff options
Diffstat (limited to 'test/FrontendC/2004-06-18-VariableLengthArrayOfStructures.c')
-rw-r--r-- | test/FrontendC/2004-06-18-VariableLengthArrayOfStructures.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/FrontendC/2004-06-18-VariableLengthArrayOfStructures.c b/test/FrontendC/2004-06-18-VariableLengthArrayOfStructures.c new file mode 100644 index 0000000..e474a13 --- /dev/null +++ b/test/FrontendC/2004-06-18-VariableLengthArrayOfStructures.c @@ -0,0 +1,10 @@ +// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null + + +struct S { }; + +int xxxx(int a) { + struct S comps[a]; + comps[0]; +} + |