Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
669496ba9fa753a238e3f0018b7a6235ec672727
/
.
/
test
/
CodeGen
/
2008-05-19-AlwaysInline.c
blob: 419951b1594f8b15d02c43d1b8db4bf4df7fc7c8 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm -o - | not grep sabrina
static
inline
int
sabrina
(
void
)
__attribute__
((
always_inline
));
static
inline
int
sabrina
(
void
)
{
return
13
;
}
int
bar
(
void
)
{
return
sabrina
()
+
68
;
}