diff options
Diffstat (limited to 'test/CFrontend/2007-02-16-VariableSizeStructArg.c')
-rw-r--r-- | test/CFrontend/2007-02-16-VariableSizeStructArg.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/test/CFrontend/2007-02-16-VariableSizeStructArg.c b/test/CFrontend/2007-02-16-VariableSizeStructArg.c deleted file mode 100644 index fd07cd8176..0000000000 --- a/test/CFrontend/2007-02-16-VariableSizeStructArg.c +++ /dev/null @@ -1,7 +0,0 @@ -// RUN: %llvmgcc -S %s -o - -// PR1170 -int f(int a, struct {int b[a];} c) { return c.b[0]; } - -int g(struct {int b[1];} c) { - return c.b[0]; -} |