repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
vla-2.c
blob
894913da3ec73116c62bb7b29f9e5703cbd79523
1
// RUN: %clang_cc1 -std=gnu99 %s -emit-llvm -o - | FileCheck %s
2
// CHECK: alloca {{.*}}, align 16
3
4
extern
void
bar
(
int
[]);
5
6
void
foo
(
int
a
)
7
{
8
int
var
[
a
]
__attribute__
((
__aligned__
(
16
)));
9
bar
(
var
);
10
return
;
11
}