summaryrefslogtreecommitdiff
path: root/gcm.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-08-27 06:16:04 -0400
committerJeffrey Walton <noloader@gmail.com>2017-08-27 06:16:04 -0400
commit7c667bc71e599a89a669aeddaa39e12cf2dc059a (patch)
tree5db9e76a28109d390a71551281da6771e436cb8f /gcm.cpp
parent2d5ed51ca9f4ecd752adce4384597bd72835cb1d (diff)
downloadcryptopp-git-7c667bc71e599a89a669aeddaa39e12cf2dc059a.tar.gz
Fix SunCC crash when compiling GCM
Diffstat (limited to 'gcm.cpp')
-rw-r--r--gcm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcm.cpp b/gcm.cpp
index 2a7fd045..280d588a 100644
--- a/gcm.cpp
+++ b/gcm.cpp
@@ -21,9 +21,9 @@
# undef CRYPTOPP_SSE2_ASM_AVAILABLE
#endif
-// SunCC 12.3 and 12.4 crash in GCM_Reduce_CLMUL
+// SunCC 12.3 - 12.5 crash in GCM_Reduce_CLMUL
// http://github.com/weidai11/cryptopp/issues/226
-#if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x5130)
+#if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x5140)
# undef CRYPTOPP_CLMUL_AVAILABLE
#endif