Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
llvm-project
/
clang
/
test
/
CodeGen
/
flip-dllimport.c
blob: d20479d8f6e84c706a30306f161b5678ae61582e [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -triple x86_64-windows-msvc -fms-extensions -emit-llvm -o - %s | FileCheck %s
__declspec
(
dllimport
)
void
f
();
void
g
()
{
f
();
}
// use it
// CHECK: define dso_local dllexport void @f
void
f
()
{
}