summaryrefslogtreecommitdiff
path: root/ppc_simd.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-04-10 00:49:11 -0400
committerJeffrey Walton <noloader@gmail.com>2020-04-10 00:49:11 -0400
commitce87de9c1fef9975ae85c118b931668c70e6b170 (patch)
treec6dabc0b9fadca093195aa9a7e6ee0eb1d7c2599 /ppc_simd.h
parent654caea6dacfb4dc8885b8c6f96af9dec5679a56 (diff)
downloadcryptopp-git-ce87de9c1fef9975ae85c118b931668c70e6b170.tar.gz
Update comments
Diffstat (limited to 'ppc_simd.h')
-rw-r--r--ppc_simd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ppc_simd.h b/ppc_simd.h
index ee4b76a8..47ffcfde 100644
--- a/ppc_simd.h
+++ b/ppc_simd.h
@@ -1958,7 +1958,7 @@ inline uint32x4_p VecAdd64(const uint32x4_p& vec1, const uint32x4_p& vec2)
// Small optimization... We can avoid a zero vector {0,0,0,0} and the
// load by using an element that will always be 0. Bytes 1,2, 5,6, 9,10,
// 13,14 are zero because we are using a vector unsigned int. There are
- // no borrows from those bytes using a vector unsigned int. The
+ // no carries into those bytes using a vector unsigned int. The
// code below uses byte 2 for the 0 value.
#if defined(CRYPTOPP_BIG_ENDIAN)
const uint8x16_p cmask = {4,5,6,7, 2,2,2,2, 12,13,14,15, 2,2,2,2};