diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2013-08-27 06:49:46 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2013-08-27 06:49:46 +0000 |
commit | 47c7eee5338f6d8c05f86838b6a2fe41c7c771de (patch) | |
tree | 2ba9efa6364213c26a808d512cf6b4239a3144ea /lib | |
parent | f69a29b23a116a3520f185054290c445abf9aa62 (diff) | |
download | external_llvm-47c7eee5338f6d8c05f86838b6a2fe41c7c771de.zip external_llvm-47c7eee5338f6d8c05f86838b6a2fe41c7c771de.tar.gz external_llvm-47c7eee5338f6d8c05f86838b6a2fe41c7c771de.tar.bz2 |
Fix the build issue under ia64. Close bug #5715
Thanks to Luca Falavigna for the help and most of the patch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189324 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExecutionEngine/JIT/JIT.cpp | 2 | ||||
-rw-r--r-- | lib/ExecutionEngine/RTDyldMemoryManager.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp index 53ea0a2..e0504d1c 100644 --- a/lib/ExecutionEngine/JIT/JIT.cpp +++ b/lib/ExecutionEngine/JIT/JIT.cpp @@ -68,7 +68,7 @@ extern "C" void LLVMLinkInJIT() { } // Determine whether we can register EH tables. -#if (defined(__GNUC__) && !defined(__ARM_EABI__) && \ +#if (defined(__GNUC__) && !defined(__ARM_EABI__) && !defined(__ia64__) && \ !defined(__USING_SJLJ_EXCEPTIONS__)) #define HAVE_EHTABLE_SUPPORT 1 #else diff --git a/lib/ExecutionEngine/RTDyldMemoryManager.cpp b/lib/ExecutionEngine/RTDyldMemoryManager.cpp index 4e76457..c5500df 100644 --- a/lib/ExecutionEngine/RTDyldMemoryManager.cpp +++ b/lib/ExecutionEngine/RTDyldMemoryManager.cpp @@ -33,7 +33,7 @@ namespace llvm { RTDyldMemoryManager::~RTDyldMemoryManager() {} // Determine whether we can register EH tables. -#if (defined(__GNUC__) && !defined(__ARM_EABI__) && \ +#if (defined(__GNUC__) && !defined(__ARM_EABI__) && !defined(__ia64__) && \ !defined(__USING_SJLJ_EXCEPTIONS__)) #define HAVE_EHTABLE_SUPPORT 1 #else |