2009-11-08 09:45:36 +08:00
|
|
|
// RUN: clang-cc -emit-llvm < %s -o %t
|
|
|
|
// RUN: grep 'dllexport' %t | count 1
|
2008-12-26 08:52:02 +08:00
|
|
|
// RUN: not grep 'dllimport' %t
|
|
|
|
|
|
|
|
void __attribute__((dllimport)) foo1();
|
|
|
|
void __attribute__((dllexport)) foo1(){}
|
|
|
|
void __attribute__((dllexport)) foo2();
|