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
/
2007-03-27-VarLengthArray.c
blob
f14fd4d8c0ade30b9897d36aa08c51d1594d70ee
1
// RUN: %llvmgcc -S %s -o - | grep {getelementptr \\\[0 x i32\\\]}
2
extern
void
f
(
int
*);
3
int
e
(
int
m
,
int
n
) {
4
int
x
[
n
];
5
f
(
x
);
6
return
x
[
m
];
7
}