summaryrefslogtreecommitdiff
path: root/ppc_simd.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-09-25 11:34:57 -0400
committerJeffrey Walton <noloader@gmail.com>2020-09-25 11:34:57 -0400
commit5248185a6962c4b9a4d6e26ad2d29b0e71dadd49 (patch)
treeec9a1a0f3de7558e746b2156eb8788e5c3fd2128 /ppc_simd.h
parentd97aede813f309158e698189f0aba9fefe09f0f0 (diff)
downloadcryptopp-git-5248185a6962c4b9a4d6e26ad2d29b0e71dadd49.tar.gz
Fix spelling
Diffstat (limited to 'ppc_simd.h')
-rw-r--r--ppc_simd.h4
1 files changed, 2 insertions, 2 deletions
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);