summaryrefslogtreecommitdiff
path: root/adv_simd.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-12-01 11:25:18 -0500
committerJeffrey Walton <noloader@gmail.com>2018-12-01 11:25:18 -0500
commita49e2ee2e77199d9d4132fdc20c192a6db97ffba (patch)
tree6df269de8eeed435e77a958b5dc0385b0fe74fc2 /adv_simd.h
parentb8bf4540ffe828719f66cf24e533c0d0fe1087a7 (diff)
downloadcryptopp-git-a49e2ee2e77199d9d4132fdc20c192a6db97ffba.tar.gz
Clear unused variable warnings on iOS
Diffstat (limited to 'adv_simd.h')
-rw-r--r--adv_simd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/adv_simd.h b/adv_simd.h
index c72b434d..f84e60d9 100644
--- a/adv_simd.h
+++ b/adv_simd.h
@@ -367,11 +367,11 @@ CRYPTOPP_INLINE size_t AdvancedProcessBlocks128_6x1_NEON(F1 func1, F6 func6,
#if (CRYPTOPP_LITTLE_ENDIAN)
const uint32x4_t s_one = {0, 0, 0, 1<<24};
- const uint32x4_t s_two = {0, 2<<24, 0, 2<<24};
+ //const uint32x4_t s_two = {0, 2<<24, 0, 2<<24};
#else
// TODO: verify these constants on ARM-BE
const uint32x4_t s_one = {0, 0, 0, 1};
- const uint32x4_t s_two = {0, 2, 0, 2};
+ //const uint32x4_t s_two = {0, 2, 0, 2};
#endif
const size_t blockSize = 16;
@@ -530,11 +530,11 @@ CRYPTOPP_INLINE size_t AdvancedProcessBlocks128_4x1_NEON(F1 func1, F4 func4,
#if (CRYPTOPP_LITTLE_ENDIAN)
const uint32x4_t s_one = {0, 0, 0, 1<<24};
- const uint32x4_t s_two = {0, 2<<24, 0, 2<<24};
+ //const uint32x4_t s_two = {0, 2<<24, 0, 2<<24};
#else
// TODO: verify these constants on ARM-BE
const uint32x4_t s_one = {0, 0, 0, 1};
- const uint32x4_t s_two = {0, 2, 0, 2};
+ //const uint32x4_t s_two = {0, 2, 0, 2};
#endif
const size_t blockSize = 16;