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
/
attr-cleanup.c
blob
755ede86c1382695f30e76bf76712b3833fe0df6
1
// RUN: %clang_cc1 -emit-llvm %s -o %t
2
3
void
f
(
void
*
arg
);
4
void
g
(
void
) {
5
__attribute__
((
cleanup
(
f
)))
void
*
g
;
6
}
7