summaryrefslogtreecommitdiff
path: root/simon.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-04-05 09:21:35 -0400
committerJeffrey Walton <noloader@gmail.com>2020-04-05 09:21:35 -0400
commit5017d9c91c853a508f25123a277dd65d60edcf3b (patch)
tree546c4af295b3fc687327e371a77db2bbe04a90df /simon.cpp
parentedc79e819bc9d81842c5c124873d1c401eeb6926 (diff)
downloadcryptopp-git-5017d9c91c853a508f25123a277dd65d60edcf3b.tar.gz
Report Altivec on PowerPC
Diffstat (limited to 'simon.cpp')
-rw-r--r--simon.cpp8
1 files changed, 0 insertions, 8 deletions
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;