From 5248185a6962c4b9a4d6e26ad2d29b0e71dadd49 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 25 Sep 2020 11:34:57 -0400 Subject: Fix spelling --- ppc_simd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ppc_simd.h') diff --git a/ppc_simd.h b/ppc_simd.h index 3968382b..e16f3acf 100644 --- a/ppc_simd.h +++ b/ppc_simd.h @@ -2084,8 +2084,8 @@ inline uint32x4_p VecSub64(const uint32x4_p& vec1, const uint32x4_p& vec2) const uint32x4_p mask = {1, 0, 1, 0}; #endif - // subc sets the compliment of borrow, so we have to un-compliment it - // using andc. + // subc sets the complement of borrow, so we have to + // un-complement it using andc. uint32x4_p bw = vec_subc(vec1, vec2); uint32x4_p res = vec_sub(vec1, vec2); bw = vec_andc(mask, bw); -- cgit v1.2.1