summaryrefslogtreecommitdiff
path: root/vmac.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-07-09 02:34:35 -0400
committerJeffrey Walton <noloader@gmail.com>2020-07-09 02:34:35 -0400
commitbf3367dfdd03b32e8d82e085cd0775833d84a3f3 (patch)
tree7b39a8faed854cac5ef13be5dbf57e3b3bf56aa4 /vmac.cpp
parent8165e41e1211b76bf9ad46a31b4a200b4561d8b5 (diff)
downloadcryptopp-git-bf3367dfdd03b32e8d82e085cd0775833d84a3f3.tar.gz
Remove unneeded temp var in VMAC
Diffstat (limited to 'vmac.cpp')
-rw-r--r--vmac.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/vmac.cpp b/vmac.cpp
index 5dd550ac..7554df45 100644
--- a/vmac.cpp
+++ b/vmac.cpp
@@ -186,11 +186,10 @@ void VMAC_Base::VHASH_Update_SSE2(const word64 *data, size_t blocksRemainingInWo
const word64 *nhK = m_nhKey();
word64 *polyS = (word64*)(void*)m_polyState();
word32 L1KeyLength = m_L1KeyLength;
- word32 temp;
// These are used in the ASM, but some analysis services miss it.
CRYPTOPP_UNUSED(data); CRYPTOPP_UNUSED(tagPart);
- CRYPTOPP_UNUSED(L1KeyLength); CRYPTOPP_UNUSED(temp);
+ CRYPTOPP_UNUSED(L1KeyLength);
CRYPTOPP_UNUSED(blocksRemainingInWord64);
// This inline ASM is tricky, and down right difficult on 32-bit when