mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
7 lines
233 B
C
7 lines
233 B
C
// RUN: %clang_cc1 -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();
|