repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs.
[llvm/zpu.git]
/
test
/
FrontendC
/
vla-2.c
blob
555cfc789250beb8cf82efec958050a7228c57b7
1
// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16"
2
3
extern
void
bar
(
int
[]);
4
5
void
foo
(
int
a
)
6
{
7
int
var
[
a
]
__attribute__
((
__aligned__
(
16
)));
8
bar
(
var
);
9
return
;
10
}