Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f155dbf901b77f0faa90a48670c0bdae7fbdea2d
/
.
/
test
/
CodeGen
/
dllimport-dllexport.c
blob: 6e259058b7a1e689bae6e322e0dfa91b7de696c4 [
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
();