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
/
2008-05-19-AlwaysInline.c
blob
419951b1594f8b15d02c43d1b8db4bf4df7fc7c8
1
// RUN: %clang_cc1 %s -emit-llvm -o - | not grep sabrina
2
3
static
inline
int
sabrina
(
void
)
__attribute__
((
always_inline
));
4
static
inline
int
sabrina
(
void
)
5
{
6
return
13
;
7
}
8
int
bar
(
void
)
9
{
10
return
sabrina
() +
68
;
11
}