Fix incorrectly enabling SSSE3 on all x64 Windows platforms

This commit is contained in:
Cameron Gutman
2026-02-19 20:03:20 -06:00
parent a063522db4
commit 3872285d8c

View File

@@ -4,7 +4,7 @@
#if defined(__AVX2__)
#define OBLAS_AVX2
#else
#if defined(__SSSE3__) || (defined(_MSC_VER) && defined(_M_X64) && !defined(_M_ARM64))
#if defined(__SSSE3__)
#define OBLAS_SSE3
#endif
#endif