1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
13 lines
180 B
C
13 lines
180 B
C
// RUN: %clang_cc1 -emit-llvm %s -o - | grep call | not grep foo
|
|
|
|
void bar() {
|
|
}
|
|
|
|
inline void __attribute__((__always_inline__)) foo() {
|
|
bar();
|
|
}
|
|
|
|
void i_want_bar() {
|
|
foo();
|
|
}
|