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, 0 insertions, 10 deletions
diff --git a/test/FrontendC/2004-06-18-VariableLengthArrayOfStructures.c b/test/FrontendC/2004-06-18-VariableLengthArrayOfStructures.c deleted file mode 100644 index 3e450a4..0000000 --- a/test/FrontendC/2004-06-18-VariableLengthArrayOfStructures.c +++ /dev/null @@ -1,10 +0,0 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null - - -struct S { }; - -int xxxx(int a) { - struct S comps[a]; - comps[0]; -} - |