repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git]
/
test
/
FrontendC
/
2002-05-24-Alloca.c
blob
128bc8b7cfc0a106e7ff14c091c9073afedc3003
1
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3
#include <string.h>
4
#include <stdio.h>
5
#include <stdlib.h>
6
7
int
main
(
int
argc
,
char
**
argv
) {
8
char
*
C
= (
char
*)
alloca
(
argc
);
9
strcpy
(
C
,
argv
[
0
]);
10
puts
(
C
);
11
}