VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Crypto/cpu.h
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2023-06-13 23:26:02 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2023-06-13 23:26:02 +0200
commit4cc203e7b31703e7b5f905dc88805291c4a6dfab (patch)
tree9c2fe869e77601a3366a26175c9d278d192ffe5d /src/Crypto/cpu.h
parent41516242d5610b886c3441710423a408e36161de (diff)
downloadVeraCrypt-4cc203e7b31703e7b5f905dc88805291c4a6dfab.tar.gz
VeraCrypt-4cc203e7b31703e7b5f905dc88805291c4a6dfab.zip
Crypto: Fix detection of SSSE3 intrinsics in compiler
We use correct define CRYPTOPP_BOOL_SSSE3_INTRINSICS_AVAILABLE
Diffstat (limited to 'src/Crypto/cpu.h')
-rw-r--r--src/Crypto/cpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Crypto/cpu.h b/src/Crypto/cpu.h
index 157aeaef..47e98a25 100644
--- a/src/Crypto/cpu.h
+++ b/src/Crypto/cpu.h
@@ -152,7 +152,7 @@ extern __m128i _mm_slli_si128(__m128i _A, int _Imm);
#endif
#endif
-#if CRYPTOPP_SSSE3_AVAILABLE || defined(__INTEL_COMPILER)
+#if CRYPTOPP_BOOL_SSSE3_INTRINSICS_AVAILABLE || defined(__INTEL_COMPILER)
#if defined(TC_WINDOWS_DRIVER) || defined (_UEFI)
#if defined(__cplusplus)
extern "C" {