blob: 306f4ee26aba1fcebf855d9ce1294d7f2e48a523 (
plain)
1
2
3
4
5
6
7
|
// RUN: clang -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();
|