summaryrefslogtreecommitdiff
path: root/blake2s_simd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'blake2s_simd.cpp')
-rw-r--r--blake2s_simd.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/blake2s_simd.cpp b/blake2s_simd.cpp
index e7c80912..f0caed48 100644
--- a/blake2s_simd.cpp
+++ b/blake2s_simd.cpp
@@ -68,6 +68,11 @@
# include "ppc_simd.h"
#endif
+#if defined(CRYPTOPP_GCC_DIAGNOSTIC_AVAILABLE)
+/* Ignore "warning: vec_lvsl is deprecated..." */
+# pragma GCC diagnostic ignored "-Wdeprecated"
+#endif
+
// Squash MS LNK4221 and libtool warnings
extern const char BLAKE2S_SIMD_FNAME[] = __FILE__;