From 5017d9c91c853a508f25123a277dd65d60edcf3b Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 5 Apr 2020 09:21:35 -0400 Subject: Report Altivec on PowerPC --- simon.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'simon.cpp') diff --git a/simon.cpp b/simon.cpp index 3d951f97..89b8e727 100644 --- a/simon.cpp +++ b/simon.cpp @@ -255,10 +255,6 @@ std::string SIMON64::Base::AlgorithmProvider() const if (HasNEON()) return "NEON"; # endif -# if (CRYPTOPP_POWER7_AVAILABLE) - if (HasPower7()) - return "Power7"; -# endif # if (CRYPTOPP_ALTIVEC_AVAILABLE) if (HasAltivec()) return "Altivec"; @@ -278,10 +274,6 @@ unsigned int SIMON64::Base::OptimalDataAlignment() const if (HasNEON()) return 4; # endif -# if (CRYPTOPP_POWER7_AVAILABLE) - if (HasPower7()) - return 4; -# endif # if (CRYPTOPP_ALTIVEC_AVAILABLE) if (HasAltivec()) return 16; -- cgit v1.2.1