repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs.
[llvm/zpu.git]
/
test
/
FrontendC
/
2010-01-18-Inlined-Debug.c
blob
4aec7b264765c3cc2792249badae119288c5322c
1
// PR: 6058
2
// RUN: %llvmgcc -g -S %s -o - | llc -O0 -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