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
/
implicit-arg.c
blob
9959419f9b7c88869daa180d70cd5272c5c602ee
1
// RUN: %clang_cc1 %s -emit-llvm -o -
2
// RUN: %clang_cc1 %s -emit-llvm -O1 -o -
3
4
static int
bar
();
5
void
foo
() {
6
int
a
=
bar
();
7
}
8
int
bar
(
unsigned
a
) {
9
}