Skip to content

Commit

Permalink
Fix x86-64 MSVC check
Browse files Browse the repository at this point in the history
  • Loading branch information
kcat committed Oct 6, 2023
1 parent f1bf7a4 commit 3ccde15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/pffft.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 3ccde15

Please sign in to comment.