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
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
align-x68_64.c
blob
cf128b43433ea121e17e60c4d911d8d5c46cfafd
1
// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm %s -o - | FileCheck %s
2
// PR5599
3
4
void
test1_f
(
void
*);
5
6
void
test1_g
(
void
) {
7
float
x
[
4
];
8
test1_f
(
x
);
9
}
10
// CHECK: @test1_g
11
// CHECK: alloca [4 x float], align 16