summaryrefslogtreecommitdiff
path: root/test/FrontendC/2002-05-24-Alloca.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2002-05-24-Alloca.c')
-rw-r--r--test/FrontendC/2002-05-24-Alloca.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/FrontendC/2002-05-24-Alloca.c b/test/FrontendC/2002-05-24-Alloca.c
deleted file mode 100644
index 128bc8b7cfc0a..0000000000000
--- a/test/FrontendC/2002-05-24-Alloca.c
+++ /dev/null
@@ -1,11 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
-
-#include <string.h>
-#include <stdio.h>
-#include <stdlib.h>
-
-int main(int argc, char **argv) {
- char *C = (char*)alloca(argc);
- strcpy(C, argv[0]);
- puts(C);
-}