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
/
Modules
/
Inputs
/
codegen-opt
/
foo.h
blob
b3a7af7c9d9bc650a03d8f434c7ea51ec2fb804f
1
void
f1
(
int
&);
2
static void
f2
() {}
3
inline
void
foo
() {
4
static int
i
;
5
f1
(
i
);
6
f2
();
7
}
8
inline
void
foo2
() {
9
}
10
void
foo_ext
() {}