Files
clang-p2996/lld/test/COFF/Inputs/export.ll
Peter Collingbourne 8b2492f2a0 COFF: Implement DLL symbol exports for bitcode files.
Differential Revision: http://reviews.llvm.org/D10530

llvm-svn: 239994
2015-06-18 05:22:15 +00:00

19 lines
284 B
LLVM

target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-windows-msvc"
define void @_DllMainCRTStartup() {
ret void
}
define void @exportfn1() {
ret void
}
define void @exportfn2() {
ret void
}
define dllexport void @exportfn3() {
ret void
}