summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine
diff options
context:
space:
mode:
authorYaron Keren <yaron.keren@gmail.com>2013-12-17 08:40:11 +0000
committerYaron Keren <yaron.keren@gmail.com>2013-12-17 08:40:11 +0000
commitefa95f887f2409423e974aada928505cb097fc9b (patch)
treebee7672b4ca43fd53853de640a3d7d84775dfd3e /lib/ExecutionEngine
parent1f0a0e314d461932aa2c626659dae3e3a6d6a00e (diff)
downloadllvm-efa95f887f2409423e974aada928505cb097fc9b.tar.gz
llvm-efa95f887f2409423e974aada928505cb097fc9b.tar.bz2
llvm-efa95f887f2409423e974aada928505cb097fc9b.tar.xz
There are no __register_frame and __deregister_frame functions
when using structured exception handling (SEH) on Windows 64. http://llvm-reviews.chandlerc.com/D2378 Patch by Jonathan Liu! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197483 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/RTDyldMemoryManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/RTDyldMemoryManager.cpp b/lib/ExecutionEngine/RTDyldMemoryManager.cpp
index 58a64609b9..26e1fddd76 100644
--- a/lib/ExecutionEngine/RTDyldMemoryManager.cpp
+++ b/lib/ExecutionEngine/RTDyldMemoryManager.cpp
@@ -34,7 +34,7 @@ RTDyldMemoryManager::~RTDyldMemoryManager() {}
// Determine whether we can register EH tables.
#if (defined(__GNUC__) && !defined(__ARM_EABI__) && !defined(__ia64__) && \
- !defined(__USING_SJLJ_EXCEPTIONS__))
+ !defined(__SEH__) && !defined(__USING_SJLJ_EXCEPTIONS__))
#define HAVE_EHTABLE_SUPPORT 1
#else
#define HAVE_EHTABLE_SUPPORT 0