repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git]
/
test
/
FrontendC
/
always-inline.c
blob
22f6c7a20ef20b07886ebf11fca0b5bb78883bb3
1
// RUN: %llvmgcc -S %s -o - | grep call | not grep foo
2
3
void
bar
() {
4
}
5
6
inline
void
__attribute__
((
__always_inline__
))
foo
() {
7
bar
();
8
}
9
10
void
i_want_bar
() {
11
foo
();
12
}