repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
- Make BranchProbability constructor public.
[llvm/stm8.git]
/
test
/
FrontendC
/
vla-3.c
blob
eca9675a419f8e120bbefe51fdf3d8f9cbde9964
1
// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16"
2
3
void
adr
(
char
*);
4
5
void
vlaalign
(
int
size
)
6
{
7
char
__attribute__
((
aligned
(
16
)))
tmp
[
size
+
32
];
8
char
tmp2
[
size
+
16
];
9
10
adr
(
tmp
);
11
}