summaryrefslogtreecommitdiffstats
path: root/Modules/_blake2/impl/blake2-config.h
diff options
context:
space:
mode:
authorMax Bachmann <kontakt@maxbachmann.de>2023-03-22 13:44:28 (GMT)
committerGitHub <noreply@github.com>2023-03-22 13:44:28 (GMT)
commitea93bde4ece139d4152a59f2c38aa6568559447c (patch)
tree1b5b2ad8b6428c6c6c97a831a13a5ff38472cf63 /Modules/_blake2/impl/blake2-config.h
parent61405da9a5689f554aa53929a2a9c168cab6056b (diff)
downloadcpython-ea93bde4ece139d4152a59f2c38aa6568559447c.zip
cpython-ea93bde4ece139d4152a59f2c38aa6568559447c.tar.gz
cpython-ea93bde4ece139d4152a59f2c38aa6568559447c.tar.bz2
gh-102027: Fix macro name (#102124)
This fixes the ssse3 / sse2 detection when sse4 is available. Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
Diffstat (limited to 'Modules/_blake2/impl/blake2-config.h')
-rw-r--r--Modules/_blake2/impl/blake2-config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_blake2/impl/blake2-config.h b/Modules/_blake2/impl/blake2-config.h
index f5dd6fa..c09cb4b 100644
--- a/Modules/_blake2/impl/blake2-config.h
+++ b/Modules/_blake2/impl/blake2-config.h
@@ -53,7 +53,7 @@
#endif
#endif
-#ifdef HAVE_SSE41
+#ifdef HAVE_SSE4_1
#ifndef HAVE_SSSE3
#define HAVE_SSSE3
#endif