repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
forceinline.c
blob
b7729cc51657033499d155780ce136cf61530a15
1
// RUN: %clang_cc1 -triple i686-win32 -emit-llvm -fms-extensions < %s | FileCheck %s
2
3
void
bar
(
void
) {
4
}
5
6
// CHECK-NOT: foo
7
__forceinline
void
foo
(
void
) {
8
bar
();
9
}
10
11
void
i_want_bar
(
void
) {
12
// CHECK: call void @bar
13
foo
();
14
}