mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 01:46:42 -05:00
14 lines
215 B
C
14 lines
215 B
C
// RUN: %clang_cc1 -triple i686-win32 -emit-llvm -fms-extensions < %s | FileCheck %s
|
|
|
|
void bar() {
|
|
}
|
|
|
|
// CHECK-NOT: foo
|
|
__forceinline void foo() {
|
|
bar();
|
|
}
|
|
|
|
void i_want_bar() {
|
|
// CHECK: call void @bar
|
|
foo();
|
|
}
|