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
/
cast.c
blob
5f340c5bb670d75861303c69666318aa53f489f6
1
// RUN: %clang_cc1 %s -emit-llvm -o %t
2
3
extern
void
go
(
const void
*
p
);
4
float
v
[
2
] = {
0.0
,
1.0
};
5
void
foo
(
void
) {
go
(
v
); }
6