Fix the build issue under ia64. Close bug #5715
[oota-llvm.git] / lib / ExecutionEngine / JIT / JIT.cpp
index 53ea0a260087dd84171780f35df614dc0bfb99fb..e0504d1c84e03c6c05cc968aa411c181f21f4c44 100644 (file)
@@ -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