Remove unneeded PPC64 BLAKE2_Compress32_CORE

This commit is contained in:
Jeffrey Walton 2020-04-06 21:16:49 -04:00
parent 8416d3985b
commit e65d10dad1
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -872,7 +872,7 @@ uint32x4_p VectorSet32<3,1,3,1>(const uint32x4_p a, const uint32x4_p b,
return VecPermute(a, c, mask);
}
void BLAKE2_Compress32_CORE(const byte* input, BLAKE2s_State& state)
void BLAKE2_Compress32_ALTIVEC(const byte* input, BLAKE2s_State& state)
{
# define m1 m0
# define m2 m0
@ -1021,13 +1021,4 @@ void BLAKE2_Compress32_CORE(const byte* input, BLAKE2s_State& state)
}
#endif // CRYPTOPP_ALTIVEC_AVAILABLE
#if (CRYPTOPP_ALTIVEC_AVAILABLE)
void BLAKE2_Compress32_ALTIVEC(const byte* input, BLAKE2s_State& state)
{
BLAKE2_Compress32_CORE(input, state);
}
#endif
NAMESPACE_END