summaryrefslogtreecommitdiffstats
path: root/llvm/lib/MC/MCObjectFileInfo.cpp
diff options
context:
space:
mode:
authorKai Nacke <kai.nacke@redstar.de>2013-07-08 04:43:23 +0000
committerKai Nacke <kai.nacke@redstar.de>2013-07-08 04:43:23 +0000
commit42097301f6c1984ba50a3ebc1349f1f4796e4f70 (patch)
tree0e2e949251ff019f3d903ee0313d5f06cd7501e1 /llvm/lib/MC/MCObjectFileInfo.cpp
parent4b482ee0efac3fb8fed02e42b178a154b1afea50 (diff)
downloadbcm5719-llvm-42097301f6c1984ba50a3ebc1349f1f4796e4f70.tar.gz
bcm5719-llvm-42097301f6c1984ba50a3ebc1349f1f4796e4f70.zip
Revert: Emit personality function and Dwarf EH data for Win64 SEH.
llvm-svn: 185788
Diffstat (limited to 'llvm/lib/MC/MCObjectFileInfo.cpp')
-rw-r--r--llvm/lib/MC/MCObjectFileInfo.cpp15
1 files changed, 5 insertions, 10 deletions
diff --git a/llvm/lib/MC/MCObjectFileInfo.cpp b/llvm/lib/MC/MCObjectFileInfo.cpp
index 1be20c34a1d..96b62f19d93 100644
--- a/llvm/lib/MC/MCObjectFileInfo.cpp
+++ b/llvm/lib/MC/MCObjectFileInfo.cpp
@@ -547,16 +547,11 @@ void MCObjectFileInfo::InitCOFFMCObjectFileInfo(Triple T) {
// though it contains relocatable pointers. In PIC mode, this is probably a
// big runtime hit for C++ apps. Either the contents of the LSDA need to be
// adjusted or this should be a data section.
- if (T.getOS() == Triple::Win32) {
- // On Windows with SEH, the LSDA is emitted into the .xdata section
- LSDASection = 0;
- } else {
- LSDASection =
- Ctx->getCOFFSection(".gcc_except_table",
- COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
- COFF::IMAGE_SCN_MEM_READ,
- SectionKind::getReadOnly());
- }
+ LSDASection =
+ Ctx->getCOFFSection(".gcc_except_table",
+ COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
+ COFF::IMAGE_SCN_MEM_READ,
+ SectionKind::getReadOnly());
// Debug info.
DwarfAbbrevSection =
OpenPOWER on IntegriCloud