From 5ea410c1d33e4201c24e52b343110b90a3d9f85e Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 27 Jul 2018 01:57:33 -0400 Subject: [PATCH] Update comments --- config.h | 1 - simon.h | 3 ++- speck.h | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index 64c76930..f35c2bf2 100644 --- a/config.h +++ b/config.h @@ -586,7 +586,6 @@ NAMESPACE_END #endif // Fixup for SunCC 12.1-12.4. Bad code generation in AES_Encrypt and friends. -// http://github.com/weidai11/cryptopp/issues/226 #if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x5130) # undef CRYPTOPP_AESNI_AVAILABLE #endif diff --git a/simon.h b/simon.h index 1ab3526a..4e4f45e6 100644 --- a/simon.h +++ b/simon.h @@ -25,7 +25,8 @@ # define CRYPTOPP_SIMON128_ADVANCED_PROCESS_BLOCKS 1 #endif -// Yet another SunStudio/SunCC workaround +// Yet another SunStudio/SunCC workaround. Failed self tests +// in SSE code paths on i386 for SunStudio 12.3 and below. #if defined(__SUNPRO_CC) # undef CRYPTOPP_SIMON64_ADVANCED_PROCESS_BLOCKS # undef CRYPTOPP_SIMON128_ADVANCED_PROCESS_BLOCKS diff --git a/speck.h b/speck.h index 211ee683..a81498f4 100644 --- a/speck.h +++ b/speck.h @@ -25,7 +25,8 @@ # define CRYPTOPP_SPECK128_ADVANCED_PROCESS_BLOCKS 1 #endif -// Yet another SunStudio/SunCC workaround +// Yet another SunStudio/SunCC workaround. Failed self tests +// in SSE code paths on i386 for SunStudio 12.3 and below. #if defined(__SUNPRO_CC) # undef CRYPTOPP_SPECK64_ADVANCED_PROCESS_BLOCKS # undef CRYPTOPP_SPECK128_ADVANCED_PROCESS_BLOCKS