From 715a0bcce3316a3785eb41a5080853120f9e1f41 Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Tue, 4 Jan 2022 12:06:35 +0200 Subject: Fix typos (PR# 1099) --- ppc_simd.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ppc_simd.h') diff --git a/ppc_simd.h b/ppc_simd.h index 1ed0b560..dc47bf2e 100644 --- a/ppc_simd.h +++ b/ppc_simd.h @@ -4,8 +4,8 @@ /// \brief Support functions for PowerPC and vector operations /// \details This header provides an agnostic interface into Clang, GCC /// and IBM XL C/C++ compilers modulo their different built-in functions -/// for accessing vector intructions. -/// \details The abstractions are necesssary to support back to GCC 4.8 and +/// for accessing vector instructions. +/// \details The abstractions are necessary to support back to GCC 4.8 and /// XLC 11 and 12. GCC 4.8 and 4.9 are still popular, and they are the /// default compiler for GCC112, GCC119 and others on the compile farm. /// Older IBM XL C/C++ compilers also have the need due to lack of @@ -300,7 +300,7 @@ inline T VecReverseBE(const T data) /// of src is aligned. If unaligned it uses vec_lvsl, /// vec_ld, vec_perm and src. The fixups using /// vec_lvsl and vec_perm are relatively expensive so -/// you should provide aligned memory adresses. +/// you should provide aligned memory addresses. /// \par Wraps /// vec_ld, vec_lvsl, vec_perm /// \sa VecLoad, VecLoadAligned @@ -331,7 +331,7 @@ inline uint32x4_p VecLoad_ALTIVEC(const byte src[16]) /// of src is aligned. If unaligned it uses vec_lvsl, /// vec_ld, vec_perm and src. /// \details The fixups using vec_lvsl and vec_perm are -/// relatively expensive so you should provide aligned memory adresses. +/// relatively expensive so you should provide aligned memory addresses. /// \par Wraps /// vec_ld, vec_lvsl, vec_perm /// \sa VecLoad, VecLoadAligned @@ -806,7 +806,7 @@ inline uint32x4_p VecLoadBE(int off, const byte src[16]) /// \details VecStore_ALTIVEC() uses vec_st if the effective address /// of dest is aligned, and uses vec_ste otherwise. /// vec_ste is relatively expensive so you should provide aligned -/// memory adresses. +/// memory addresses. /// \details VecStore_ALTIVEC() is used when POWER7 or above /// and unaligned loads is not available. /// \par Wraps @@ -846,7 +846,7 @@ inline void VecStore_ALTIVEC(const T data, byte dest[16]) /// \details VecStore_ALTIVEC() uses vec_st if the effective address /// of dest is aligned, and uses vec_ste otherwise. /// vec_ste is relatively expensive so you should provide aligned -/// memory adresses. +/// memory addresses. /// \details VecStore_ALTIVEC() is used when POWER7 or above /// and unaligned loads is not available. /// \par Wraps -- cgit v1.2.1