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
/
2010-01-18-Inlined-Debug.c
blob
d763744d508b0422fba8e10cc3ecb0d9faefb04b
1
// PR: 6058
2
// RUN: %clang_cc1 -debug-info-kind=limited -emit-llvm %s -o /dev/null
3
4
static
inline
int
foo
(
double
)
__attribute__
((
always_inline
));
5
static
inline
int
foo
(
double
__x
) {
return
__x
; }
6
7
void
bar
(
double
x
) {
8
foo
(
x
);
9
}
10
11
12