summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/JIT
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2013-08-27 06:49:46 +0000
committerSylvestre Ledru <sylvestre@debian.org>2013-08-27 06:49:46 +0000
commitfb992ab38502e9c2ba1847c671a0a4d610eab6d6 (patch)
tree8d1e7592cfa525bce6c8d6c959abfb99f374f58d /llvm/lib/ExecutionEngine/JIT
parent322fc8477c23b3c7fcd89c01d417d26ab3ce6866 (diff)
downloadbcm5719-llvm-fb992ab38502e9c2ba1847c671a0a4d610eab6d6.tar.gz
bcm5719-llvm-fb992ab38502e9c2ba1847c671a0a4d610eab6d6.zip
Fix the build issue under ia64. Close bug #5715
Thanks to Luca Falavigna for the help and most of the patch. llvm-svn: 189324
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT')
-rw-r--r--llvm/lib/ExecutionEngine/JIT/JIT.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.cpp b/llvm/lib/ExecutionEngine/JIT/JIT.cpp
index 53ea0a26008..e0504d1c84e 100644
--- a/llvm/lib/ExecutionEngine/JIT/JIT.cpp
+++ b/llvm/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
OpenPOWER on IntegriCloud