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-1.c
blob
77f78a5e3af743da66888961a15f472adc2ba3a1
1
// RUN: %llvmgcc_only -std=gnu99 %s -S |& grep {warning: alignment for}
2
// ppc does not support this feature, and gets a fatal error at runtime.
3
// XFAIL: powerpc
4
5
int
foo
(
int
a
)
6
{
7
int
var
[
a
]
__attribute__
((
__aligned__
(
32
)));
8
return
4
;
9
}