diff options
| author | Yaron Keren <yaron.keren@gmail.com> | 2013-12-17 08:40:11 +0000 |
|---|---|---|
| committer | Yaron Keren <yaron.keren@gmail.com> | 2013-12-17 08:40:11 +0000 |
| commit | 7da8e45b57eb57b96e60d681711b1340f123abd3 (patch) | |
| tree | 36b18854bfde6173e374528163b319ddd93bf9be | |
| parent | c5f6726a24f7daaa863bcddb4a0fbf9ad3578c62 (diff) | |
| download | bcm5719-llvm-7da8e45b57eb57b96e60d681711b1340f123abd3.tar.gz bcm5719-llvm-7da8e45b57eb57b96e60d681711b1340f123abd3.zip | |
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!
llvm-svn: 197483
| -rw-r--r-- | llvm/lib/ExecutionEngine/RTDyldMemoryManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/RTDyldMemoryManager.cpp b/llvm/lib/ExecutionEngine/RTDyldMemoryManager.cpp index 58a64609b9b..26e1fddd769 100644 --- a/llvm/lib/ExecutionEngine/RTDyldMemoryManager.cpp +++ b/llvm/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 |

