llvm-6502/test/FrontendC/always-inline.c

13 lines
170 B
C
Raw Normal View History

// RUN: %llvmgcc -S %s -o - | grep call | not grep foo
void bar() {
}
inline void __attribute__((__always_inline__)) foo() {
bar();
}
void i_want_bar() {
foo();
}