xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/forceinline.c (revision ebfedea0ce5bbe81e252ddf32d732e40fb633fae)
1 // RUN: %clang_cc1 -triple i686-win32 -emit-llvm -fms-extensions < %s | FileCheck %s
2 
3 void bar() {
4 }
5 
6 // CHECK-NOT: foo
7 __forceinline void foo() {
8   bar();
9 }
10 
11 void i_want_bar() {
12 // CHECK: call void @bar
13   foo();
14 }
15