Sign in
android
/
toolchain
/
llvm-project
/
refs/heads/android-t-preview-1
/
.
/
clang
/
test
/
CodeGen
/
flip-dllimport.c
blob: d20479d8f6e84c706a30306f161b5678ae61582e [
file
] [
log
] [
blame
] [
edit
]
// 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
()
{
}