From b87ef5d5cf0c66066ea8b95f64d107fa19fd0b79 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 30 Nov 2018 05:48:41 -0500 Subject: [PATCH] Update documentation --- cpu.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cpu.h b/cpu.h index 220eedfd..972cf3bc 100644 --- a/cpu.h +++ b/cpu.h @@ -606,7 +606,7 @@ void CRYPTOPP_API DetectPowerpcFeatures(); /// \brief Determine if a PowerPC processor has Altivec available /// \returns true if the hardware is capable of Altivec at runtime, false otherwise. -/// \details Altivec instructions are available under most modern PowerPCs. +/// \details Altivec instructions are available on modern PowerPCs. /// \details Runtime support requires compile time support. When compiling with GCC, you may /// need to compile with -mcpu=power4; while IBM XL C/C++ compilers require /// -qarch=pwr6 -qaltivec. Also see PowerPC's _ALTIVEC_ preprocessor macro. @@ -623,7 +623,6 @@ inline bool HasAltivec() /// \brief Determine if a PowerPC processor has Power7 available /// \returns true if the hardware is capable of Power7 at runtime, false otherwise. -/// \details Altivec instructions are available under most modern PowerPCs. /// \details Runtime support requires compile time support. When compiling with GCC, you may /// need to compile with -mcpu=power7; while IBM XL C/C++ compilers require /// -qarch=pwr7 -qaltivec. Also see PowerPC's _ALTIVEC_ preprocessor macro. @@ -640,7 +639,6 @@ inline bool HasPower7() /// \brief Determine if a PowerPC processor has Power8 available /// \returns true if the hardware is capable of Power8 at runtime, false otherwise. -/// \details Altivec instructions are available under most modern PowerPCs. /// \details Runtime support requires compile time support. When compiling with GCC, you may /// need to compile with -mcpu=power8; while IBM XL C/C++ compilers require /// -qarch=pwr8 -qaltivec. Also see PowerPC's _ALTIVEC_ preprocessor macro. @@ -657,7 +655,6 @@ inline bool HasPower8() /// \brief Determine if a PowerPC processor has Power9 available /// \returns true if the hardware is capable of Power9 at runtime, false otherwise. -/// \details Altivec instructions are available under most modern PowerPCs. /// \details Runtime support requires compile time support. When compiling with GCC, you may /// need to compile with -mcpu=power9; while IBM XL C/C++ compilers require /// -qarch=pwr9 -qaltivec. Also see PowerPC's _ALTIVEC_ preprocessor macro. @@ -730,7 +727,6 @@ inline bool HasSHA512() /// \brief Determine if a PowerPC processor has DARN available /// \returns true if the hardware is capable of DARN at runtime, false otherwise. -/// \details Altivec instructions are available under most modern PowerPCs. /// \details Runtime support requires compile time support. When compiling with GCC, you may /// need to compile with -mcpu=power9; while IBM XL C/C++ compilers require /// -qarch=pwr9 -qaltivec. Also see PowerPC's _ALTIVEC_ preprocessor macro.