mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-29 23:12:55 +01:00
580c4aecc3
The .drectve section should be marked as IMAGE_SCN_LNK_REMOVE. This matches what the MSVC toolchain does and accurately reflects that this section should not be emitted into the final binary. This section is merely information for the linker, comprising of additional linker directives. llvm-svn: 209273
18 lines
366 B
LLVM
18 lines
366 B
LLVM
; RUN: llc -mtriple i686-windows -filetype obj -o - %s | llvm-readobj -sections \
|
|
; RUN: | FileCheck %s
|
|
|
|
define dllexport void @function() {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
; CHECK: Section {
|
|
; CHECK: Name: .drectve
|
|
; CHECK: Characteristics [
|
|
; CHECK: IMAGE_SCN_ALIGN_1BYTES
|
|
; CHECK: IMAGE_SCN_LNK_INFO
|
|
; CHECK: IMAGE_SCN_LNK_REMOVE
|
|
; CHECK: ]
|
|
; CHECK: }
|
|
|