From 3bdac0a06e0310c2961c7c6f446db2c54a824566 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 27 Jun 2005 09:36:43 +0200 Subject: [PATCH] Fix for Intel compiler --- extra/yassl/taocrypt/src/integer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extra/yassl/taocrypt/src/integer.cpp b/extra/yassl/taocrypt/src/integer.cpp index 0f06bb4e044..460b2d31426 100644 --- a/extra/yassl/taocrypt/src/integer.cpp +++ b/extra/yassl/taocrypt/src/integer.cpp @@ -35,7 +35,8 @@ #endif -#if defined(_MSC_VER) && defined(_WIN64) // 64 bit X overflow intrinsic +#if defined(_MSC_VER) && defined(_WIN64) && \ + !defined(__INTEL_COMPILER) // 64 bit X overflow intrinsic #ifdef __ia64__ #define myUMULH __UMULH #elif __x86_64__