You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
290 B

// 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);
}