Removed unneeded defines from ppc-simd.cpp

Whitespace check-in
pull/552/head
Jeffrey Walton 2017-12-16 20:26:59 -05:00
parent 19deccf3ba
commit d7a2e0e10c
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 169 additions and 166 deletions

View File

@ -10,6 +10,8 @@
#include "config.h" #include "config.h"
#include "stdcpp.h" #include "stdcpp.h"
#if 0
// We set CRYPTOPP_ALTIVEC_AVAILABLE and friends based on // We set CRYPTOPP_ALTIVEC_AVAILABLE and friends based on
// compiler version and preprocessor macros. If the compiler // compiler version and preprocessor macros. If the compiler
// feature is not available, then we have to disable it here. // feature is not available, then we have to disable it here.
@ -24,8 +26,9 @@
# undef CRYPTOPP_POWER8_CRYPTO_AVAILABLE # undef CRYPTOPP_POWER8_CRYPTO_AVAILABLE
#endif #endif
// TODO.. Change to CRYPTOPP_POWER8_CRYPTO_AVAILABLE #endif // 0
#if defined(CRYPTOPP_ALTIVEC_AVAILABLE) || defined(CRYPTOPP_POWER8_AES_AVAILABLE)
#if defined(CRYPTOPP_ALTIVEC_AVAILABLE)
# include "ppc-simd.h" # include "ppc-simd.h"
#endif #endif