VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2016-06-18 01:44:03 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2016-06-18 01:44:48 +0200
commite4efd6820aed1618a3509d50fa7041ce3f5366eb (patch)
tree23f18f5cef6d5919f2cb15aaea2e550c8092cf11 /src
parent2faa1290c0634392dfdace39921b10fb47a47b68 (diff)
downloadVeraCrypt-e4efd6820aed1618a3509d50fa7041ce3f5366eb.tar.gz
VeraCrypt-e4efd6820aed1618a3509d50fa7041ce3f5366eb.zip
Windows Driver: add declaration of missing intrinsic _mm_setr_epi32 (to be used by upcoming implementation)
Diffstat (limited to 'src')
-rw-r--r--src/Crypto/cpu.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Crypto/cpu.h b/src/Crypto/cpu.h
index d6015e1c..ab005226 100644
--- a/src/Crypto/cpu.h
+++ b/src/Crypto/cpu.h
@@ -69,6 +69,7 @@ extern __m128i _mm_unpacklo_epi64(__m128i _A, __m128i _B);
extern void _mm_store_si128(__m128i *_P, __m128i _B);
extern __m64 _m_pxor(__m64 _MM1, __m64 _MM2);
extern __m128i _mm_set_epi64(__m64 _Q1, __m64 _Q0);
+extern __m128i _mm_setr_epi32(int _I0, int _I1, int _I2, int _I3);
#define _mm_xor_si64 _m_pxor
#define _mm_empty _m_empty
#else