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
/
builtin-rename.c
blob
0b71d8880623776a78a848aeab77fd1e4969e4ab
1
// RUN: %clang_cc1 %s -emit-llvm -o - | grep 'declare.*printf' | count 1
2
// PR3612
3
4
int
printf
(
const char
*, ...);
5
6
int
foo
(
void
) {
7
return
printf
(
printf
);
8
}