repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git]
/
test
/
FrontendC
/
2004-06-18-VariableLengthArrayOfStructures.c
blob
e474a13b37f028a209f5440f29787a00da11d42d
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
4
struct
S
{ };
5
6
int
xxxx
(
int
a
) {
7
struct
S comps
[
a
];
8
comps
[
0
];
9
}
10