diff options
author | Jeffrey Walton <noloader@gmail.com> | 2019-01-22 02:35:25 -0500 |
---|---|---|
committer | Jeffrey Walton <noloader@gmail.com> | 2019-01-22 02:35:25 -0500 |
commit | c22f37f051ce6d9ddaf90de19f75208d66e0a90b (patch) | |
tree | 3edf1980c6dc3340a1156d7c1427f84990110cf2 /blake2s_simd.cpp | |
parent | b8f7348c61f24a39f37639b3cdd4d2dce10ce2e8 (diff) | |
download | cryptopp-git-c22f37f051ce6d9ddaf90de19f75208d66e0a90b.tar.gz |
Clear unused variable warning on AIX
Diffstat (limited to 'blake2s_simd.cpp')
-rw-r--r-- | blake2s_simd.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/blake2s_simd.cpp b/blake2s_simd.cpp index c2715d24..4b46c525 100644 --- a/blake2s_simd.cpp +++ b/blake2s_simd.cpp @@ -848,6 +848,7 @@ uint32x4_p VectorSet32<2,0,2,0>(const uint32x4_p a, const uint32x4_p b, const uint32x4_p c, const uint32x4_p d)
{
// a=b, c=d, mask is {2,0, 2,0}
+ CRYPTOPP_UNUSED(b); CRYPTOPP_UNUSED(d);
const uint8x16_p mask = {16,17,18,19, 24,25,26,27, 0,1,2,3, 8,9,10,11};
return VecPermute(a, c, mask);
}
@@ -857,6 +858,7 @@ uint32x4_p VectorSet32<3,1,3,1>(const uint32x4_p a, const uint32x4_p b, const uint32x4_p c, const uint32x4_p d)
{
// a=b, c=d, mask is {3,1, 3,1}
+ CRYPTOPP_UNUSED(b); CRYPTOPP_UNUSED(d);
const uint8x16_p mask = {20,21,22,23, 28,29,30,31, 4,5,6,7, 12,13,14,15};
return VecPermute(a, c, mask);
}
|