Fix x86_64 arch define for MSVC

This commit is contained in:
Luke Street 2021-02-15 21:04:18 -05:00
parent 3280363b6d
commit 88cc539f16
1 changed files with 2 additions and 2 deletions

View File

@ -13,9 +13,9 @@
#endif
#include <string.h>
#include <stdlib.h>
#if __x86_64__
#if defined(__x86_64__) || defined(_M_X64)
#include <xmmintrin.h>
#else
#elif defined(__ARM_NEON)
#include "sse2neon.h"
#endif
#include "internal.h"