mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 01:46:42 -05:00
12 lines
180 B
C
12 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();
|
|
}
|