8000 [3.10] gh-102027: Fix macro name (GH-102124) (#102917) · python/cpython@581dd8c · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 581dd8c

Browse files
miss-islingtonmaxbachmannarhadthedev
authored
[3.10] gh-102027: Fix macro name (GH-102124) (#102917)
gh-102027: Fix macro name (GH-102124) This fixes the ssse3 / sse2 detection when sse4 is available. (cherry picked from commit ea93bde) Co-authored-by: Max Bachmann <kontakt@maxbachmann.de> Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
1 parent 0a2b63f commit 581dd8c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Fix SSE2 and SSE3 detection in ``_blake2`` internal module. Patch by Max
2+
Bachmann.

Modules/_blake2/impl/blake2-config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
#endif
5454
#endif
5555

56-
#ifdef HAVE_SSE41
56+
#ifdef HAVE_SSE4_1
5757
#ifndef HAVE_SSSE3
5858
#define HAVE_SSSE3
5959
#endif

0 commit comments

Comments
 (0)
0