summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2002-05-24-Alloca.c
blob: 30ba8bb8e218de553ea217f9c4767854b1993260 (plain)
1
2
3
4
5
6
7
8
9
10
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);
}