summaryrefslogtreecommitdiff
path: root/lib/MC
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
commit113d32cea868bd1749b4cdc8d1e52d9dccb8b5a2 (patch)
tree2f6df2330d1b1ea926f448127aacd819806c82e3 /lib/MC
parent04b84c2f92b8c9cf863853eca33f47f9fbd80fd1 (diff)
downloadllvm-113d32cea868bd1749b4cdc8d1e52d9dccb8b5a2.tar.gz
llvm-113d32cea868bd1749b4cdc8d1e52d9dccb8b5a2.tar.bz2
llvm-113d32cea868bd1749b4cdc8d1e52d9dccb8b5a2.tar.xz
Revert: Emit personality function and Dwarf EH data for Win64 SEH.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC')
-rw-r--r--lib/MC/MCObjectFileInfo.cpp15
1 files changed, 5 insertions, 10 deletions
diff --git a/lib/MC/MCObjectFileInfo.cpp b/lib/MC/MCObjectFileInfo.cpp
index 1be20c34a1..96b62f19d9 100644
--- a/lib/MC/MCObjectFileInfo.cpp
+++ b/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 =