blob: 0a44db12ea29cd8db37a37176f1e7f2b799915ba [file] [log] [blame]
Tanya Lattnerca211872004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattner999b83e2002-07-23 18:25:39 +00003#include <string.h>
4#include <stdio.h>
5#include <stdlib.h>
6
7int main(int argc, char **argv) {
8 char *C = (char*)alloca(argc);
9 strcpy(C, argv[0]);
10 puts(C);
11}