summaryrefslogtreecommitdiff
path: root/lib/MC/MCObjectFileInfo.cpp
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2014-05-21 05:15:01 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2014-05-21 05:15:01 +0000
commit8235ed1808c65ca8ebcc811c166387c24ff63083 (patch)
treeffc1a3df509c372e7ef40b7d3a044e0bc758e7ce /lib/MC/MCObjectFileInfo.cpp
parent651f680b79947b345a5cd6ddb177483365e3b551 (diff)
downloadllvm-8235ed1808c65ca8ebcc811c166387c24ff63083.tar.gz
llvm-8235ed1808c65ca8ebcc811c166387c24ff63083.tar.bz2
llvm-8235ed1808c65ca8ebcc811c166387c24ff63083.tar.xz
MC: mark COFF .drectve section as REMOVE
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209273 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCObjectFileInfo.cpp')
-rw-r--r--lib/MC/MCObjectFileInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/MCObjectFileInfo.cpp b/lib/MC/MCObjectFileInfo.cpp
index e4bcfa257f..e5377890da 100644
--- a/lib/MC/MCObjectFileInfo.cpp
+++ b/lib/MC/MCObjectFileInfo.cpp
@@ -739,7 +739,7 @@ void MCObjectFileInfo::InitCOFFMCObjectFileInfo(Triple T) {
DrectveSection =
Ctx->getCOFFSection(".drectve",
- COFF::IMAGE_SCN_LNK_INFO,
+ COFF::IMAGE_SCN_LNK_INFO | COFF::IMAGE_SCN_LNK_REMOVE,
SectionKind::getMetadata());
PDataSection =