summaryrefslogtreecommitdiff
path: root/aria.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-05-22 04:34:57 -0400
committerJeffrey Walton <noloader@gmail.com>2017-05-22 04:34:57 -0400
commitbc40d3607565f53af732e1c01d2b3e22ed837432 (patch)
tree1da32089b0fd297497e95446c58a5677f2aff0af /aria.cpp
parentf40c55810d25949d59f8de2921d56bd06099c4cc (diff)
downloadcryptopp-git-bc40d3607565f53af732e1c01d2b3e22ed837432.tar.gz
Fixed ARIA self test failures under SunCC
Diffstat (limited to 'aria.cpp')
-rw-r--r--aria.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/aria.cpp b/aria.cpp
index 8e2a561b..bfa9ab07 100644
--- a/aria.cpp
+++ b/aria.cpp
@@ -453,7 +453,7 @@ void ARIA::Base::UncheckedSetKey(const byte *key, unsigned int keylen, const Nam
rk = m_rk.data();
r = R; q = Q;
-#if CRYPTOPP_ENABLE_ARIA_SSE2_INTRINSICS
+#if CRYPTOPP_ENABLE_ARIA_SSE2_INTRINSICS && !defined(__SUNPRO_CC)
if (HasSSE2())
{
a=reinterpret_cast<word32*>(rk); s=m_w.data()+24; z=a+r*4;