aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2007-02-16-VariableSizeStructArg.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2007-02-16-VariableSizeStructArg.c')
-rw-r--r--test/FrontendC/2007-02-16-VariableSizeStructArg.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/FrontendC/2007-02-16-VariableSizeStructArg.c b/test/FrontendC/2007-02-16-VariableSizeStructArg.c
new file mode 100644
index 0000000..fd07cd8
--- /dev/null
+++ b/test/FrontendC/2007-02-16-VariableSizeStructArg.c
@@ -0,0 +1,7 @@
+// 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];
+}