remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git] / test / FrontendC / 2002-05-24-Alloca.c
blob128bc8b7cfc0a106e7ff14c091c9073afedc3003
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
3 #include <string.h>
4 #include <stdio.h>
5 #include <stdlib.h>
7 int main(int argc, char **argv) {
8 char *C = (char*)alloca(argc);
9 strcpy(C, argv[0]);
10 puts(C);