Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
5a2eff85d185ad94b6272a6f6c869496d8c23ced
/
.
/
test
/
CodeGen
/
always-inline.c
blob: dc74be5e8c218beec28d3e2fbd6f15f718946140 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm %s -o - | grep call | not grep foo
void
bar
()
{
}
inline
void
__attribute__
((
__always_inline__
))
foo
()
{
bar
();
}
void
i_want_bar
()
{
foo
();
}