aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2002-05-24-Alloca.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2002-05-24-Alloca.c')
-rw-r--r--test/CodeGen/2002-05-24-Alloca.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/2002-05-24-Alloca.c b/test/CodeGen/2002-05-24-Alloca.c
new file mode 100644
index 000000000000..30ba8bb8e218
--- /dev/null
+++ b/test/CodeGen/2002-05-24-Alloca.c
@@ -0,0 +1,11 @@
+// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
+
+typedef __SIZE_TYPE__ size_t;
+void *alloca(size_t size);
+char *strcpy(char *restrict s1, const char *restrict s2);
+int puts(const char *s);
+int main(int argc, char **argv) {
+ char *C = (char*)alloca(argc);
+ strcpy(C, argv[0]);
+ puts(C);
+}