aboutsummaryrefslogtreecommitdiff
path: root/test/CFrontend/2007-03-27-VarLengthArray.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CFrontend/2007-03-27-VarLengthArray.c')
-rw-r--r--test/CFrontend/2007-03-27-VarLengthArray.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/CFrontend/2007-03-27-VarLengthArray.c b/test/CFrontend/2007-03-27-VarLengthArray.c
deleted file mode 100644
index 5bebe9b09e..0000000000
--- a/test/CFrontend/2007-03-27-VarLengthArray.c
+++ /dev/null
@@ -1,7 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | grep {getelementptr i32}
-extern void f(int *);
-int e(int m, int n) {
- int x[n];
- f(x);
- return x[m];
-}