blob: 9a21c0dd2c7866076b4ef688f8e1cde255f931d4 [file] [log] [blame]
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00001// RUN: %clang_cc1 -triple i686-win32 -emit-llvm -fms-extensions < %s | FileCheck %s
2
3void bar() {
4}
5
6// CHECK-NOT: foo
7__forceinline void foo() {
8 bar();
9}
10
11void i_want_bar() {
12// CHECK: call void @bar
13 foo();
14}