diff options
author | Chris Robinson <[email protected]> | 2023-10-06 01:20:24 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-10-06 01:20:24 -0700 |
commit | 3ccde151c609ba8fed59f07277ca5c719b2b92fc (patch) | |
tree | c536b70c7acf92bd04368b610dff950371984fa2 /common | |
parent | f1bf7a42ac66124b6f6dc5e01897a5f052519df3 (diff) |
Fix x86-64 MSVC check
Diffstat (limited to 'common')
-rw-r--r-- | common/pffft.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/pffft.cpp b/common/pffft.cpp index 5b3b25e7..d42f7baf 100644 --- a/common/pffft.cpp +++ b/common/pffft.cpp @@ -124,7 +124,7 @@ inline v4sf ld_ps1(const float *p) { v4sf v=vec_lde(0,p); return vec_splat(vec_p /* * SSE1 support macros */ -#elif defined(__x86_64__) || defined(__SSE__) || defined(_M_X86) || \ +#elif defined(__x86_64__) || defined(__SSE__) || defined(_M_X64) || \ (defined(_M_IX86_FP) && _M_IX86_FP >= 1) #include <xmmintrin.h> |