summaryrefslogtreecommitdiff
path: root/vmac.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vmac.cpp')
-rw-r--r--vmac.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmac.cpp b/vmac.cpp
index d9e3b321..610f7960 100644
--- a/vmac.cpp
+++ b/vmac.cpp
@@ -435,7 +435,7 @@ VMAC_Base::VHASH_Update_SSE2(const word64 *data, size_t blocksRemainingInWord64,
#define AccumulateNH(a, b, c) a += word128(b)*(c)
#define Multiply128(r, i1, i2) r = word128(word64(i1)) * word64(i2)
#else
- #if _MSC_VER >= 1400 && !defined(__INTEL_COMPILER) && !(defined(_M_ARM) || defined(_M_ARM64))
+ #if _MSC_VER >= 1400 && !defined(__INTEL_COMPILER) && (defined(_M_X86) || defined(_M_X64) || defined(_M_IA64))
#define MUL32(a, b) __emulu(word32(a), word32(b))
#else
#define MUL32(a, b) ((word64)((word32)(a)) * (word32)(b))