Add header <nmmintrin.h> for SunCC 12.4
parent
e699946202
commit
b80f725acc
5
crc.cpp
5
crc.cpp
|
|
@ -13,6 +13,11 @@ NAMESPACE_BEGIN(CryptoPP)
|
|||
# undef CRYPTOPP_BOOL_SSE4_INTRINSICS_AVAILABLE
|
||||
#endif
|
||||
|
||||
// SunCC 12.4 and above
|
||||
#if defined(CRYPTOPP_BOOL_SSE4_INTRINSICS_AVAILABLE) && (__SUNPRO_CC >= 0x5130)
|
||||
# include <nmminitin.h>
|
||||
#endif
|
||||
|
||||
/* Table of CRC-32's of all single byte values (made by makecrc.c) */
|
||||
const word32 CRC32::m_tab[] = {
|
||||
#ifdef IS_LITTLE_ENDIAN
|
||||
|
|
|
|||
Loading…
Reference in New Issue