summaryrefslogtreecommitdiff
path: root/vmac.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-01-04 20:33:53 -0500
committerJeffrey Walton <noloader@gmail.com>2019-01-04 20:33:53 -0500
commit1f1c90cc290dc46a8664e0693190b2809024b225 (patch)
treebd03852bdaf09209d5bf6ead35c519a9852b17af /vmac.cpp
parent26a9bdcd76ff35387511c9dfea0c2447ecbd8a3f (diff)
downloadcryptopp-git-1f1c90cc290dc46a8664e0693190b2809024b225.tar.gz
Fix _M_IX86 typo
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 610f7960..535cce21 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_X86) || defined(_M_X64) || defined(_M_IA64))
+ #if _MSC_VER >= 1400 && !defined(__INTEL_COMPILER) && (defined(_M_IX86) || 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))