Remove debug statement

Thus slipped by during commit 898dab99b8
This commit is contained in:
Jeffrey Walton 2018-08-12 04:24:08 -04:00
parent 898dab99b8
commit 3e26437249
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -450,7 +450,7 @@ size_t SPECK128::Enc::AdvancedProcessBlocks(const byte *inBlocks, const byte *xo
inBlocks, xorBlocks, outBlocks, length, flags);
#endif
#if (CRYPTOPP_POWER8_AVAILABLE)
if (HasPower8() || true)
if (HasPower8())
return SPECK128_Enc_AdvancedProcessBlocks_POWER8(m_rkeys, (size_t)m_rounds,
inBlocks, xorBlocks, outBlocks, length, flags);
#endif