forked from OSchip/llvm-project
34 lines
781 B
LLVM
34 lines
781 B
LLVM
; REQUIRES: x86
|
|
|
|
; RUN: llvm-as %s -o %t.bc
|
|
|
|
; RUN: lld-link -lldmingw -dll -out:%t.dll %t.bc -noentry -output-def:%t.def
|
|
; RUN: llvm-readobj --coff-exports %t.dll | grep Name: | FileCheck %s
|
|
; RUN: cat %t.def | FileCheck --check-prefix=IMPLIB %s
|
|
|
|
; CHECK: Name: MyComdatFunc
|
|
; CHECK: Name: MyExtData
|
|
; CHECK: Name: MyLibFunc
|
|
|
|
; IMPLIB: MyComdatFunc @1{{$}}
|
|
; IMPLIB: MyExtData @2 DATA
|
|
; IMPLIB: MyLibFunc @3{{$}}
|
|
|
|
target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-w64-windows-gnu"
|
|
|
|
@MyExtData = dso_local global i32 42, align 4
|
|
|
|
$MyComdatFunc = comdat any
|
|
|
|
define dso_local void @MyLibFunc() {
|
|
entry:
|
|
call void @MyComdatFunc()
|
|
ret void
|
|
}
|
|
|
|
define linkonce_odr void @MyComdatFunc() comdat {
|
|
entry:
|
|
ret void
|
|
}
|