Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
28de78bf9b8532b7733f49aea54b7fae651af490
/
.
/
test
/
CodeGen
/
dllimport-dllexport.c
blob: fe49ae7a32af784d349d4ba3c0a69ec2e7383851 [
file
] [
log
] [
blame
]
// RUN: clang-cc -emit-llvm < %s -o %t &&
// RUN: grep 'dllexport' %t | count 1 &&
// RUN: not grep 'dllimport' %t
void
__attribute__
((
dllimport
))
foo1
();
void
__attribute__
((
dllexport
))
foo1
(){}
void
__attribute__
((
dllexport
))
foo2
();