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
/
2004-06-18-VariableLengthArrayOfStructures.c
blob
3e450a4b936660f98cdbe305ee256b737c750869
1
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3
4
struct
S
{ };
5
6
int
xxxx
(
int
a
) {
7
struct
S comps
[
a
];
8
comps
[
0
];
9
}
10