llvm-for-llvmta/tools/clang/test/CodeGen/forceinline.c

15 lines
215 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
// 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();
}