remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git] / test / FrontendC / always-inline.c
blob22f6c7a20ef20b07886ebf11fca0b5bb78883bb3
1 // RUN: %llvmgcc -S %s -o - | grep call | not grep foo
3 void bar() {
6 inline void __attribute__((__always_inline__)) foo() {
7 bar();
10 void i_want_bar() {
11 foo();