summaryrefslogtreecommitdiff
path: root/vmac.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-09-25 04:08:17 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-09-25 04:08:17 +0000
commit2457d75233d09ad58d97203739fdb994b0457b06 (patch)
treedb98e46a7e80daefc6c7d73a177db9c4cf20d644 /vmac.cpp
parent5011c185406977b5c5f0549edac0d3f85d2e8db9 (diff)
downloadcryptopp-2457d75233d09ad58d97203739fdb994b0457b06.tar.gz
fix compile with ICC 10
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@407 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'vmac.cpp')
-rwxr-xr-xvmac.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmac.cpp b/vmac.cpp
index c503d98..f252d02 100755
--- a/vmac.cpp
+++ b/vmac.cpp
@@ -141,7 +141,7 @@ VMAC_Base::VHASH_Update_SSE2(const word64 *data, size_t blocksRemainingInWord64,
AS2( mov %1, %%ebx)
".intel_syntax noprefix;"
#else
- #if _MSC_VER < 1300
+ #if _MSC_VER < 1300 || defined(__INTEL_COMPILER)
word32 L1KeyLength = m_L1KeyLength;
char isFirstBlock = m_isFirstBlock;
AS2( mov ebx, [L1KeyLength])