Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
ed5e3552147830159a1d48d067dfbb49ac9cccfd
/
.
/
test
/
FrontendC
/
2010-01-18-Inlined-Debug.c
blob: 4aec7b264765c3cc2792249badae119288c5322c [
file
] [
log
] [
blame
]
// PR: 6058
// RUN: %llvmgcc -g -S %s -o - | llc -O0 -o /dev/null
static
inline
int
foo
(
double
)
__attribute__
((
always_inline
));
static
inline
int
foo
(
double
__x
)
{
return
__x
;
}
void
bar
(
double
x
)
{
foo
(
x
);
}