mirror of https://github.com/python/cpython
gh-102027: Fix macro name (#102124)
This fixes the ssse3 / sse2 detection when sse4 is available. Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
This commit is contained in:
parent
61405da9a5
commit
ea93bde4ec
|
@ -0,0 +1,2 @@
|
|||
Fix SSE2 and SSE3 detection in ``_blake2`` internal module. Patch by Max
|
||||
Bachmann.
|
|
@ -53,7 +53,7 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_SSE41
|
||||
#ifdef HAVE_SSE4_1
|
||||
#ifndef HAVE_SSSE3
|
||||
#define HAVE_SSSE3
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue