We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0decd6 commit bdd9a6dCopy full SHA for bdd9a6d
src/unicode/intrinsics.h
@@ -13,7 +13,7 @@
13
*/
14
#pragma once
15
16
-#if defined(__x86_64__)
+#if defined(__x86_64__) || defined(_M_AMD64)
17
#include <emmintrin.h> // AVX, AVX2, FMP
18
#include <immintrin.h> // SSE2
19
#endif
@@ -34,7 +34,7 @@ struct platform_intrinsics;
34
#pragma GCC diagnostic ignored "-Wignored-attributes"
35
36
37
-#if defined(__x86_64__) // {{{
+#if defined(__x86_64__) || defined(_M_AMD64) // {{{
38
39
template <>
40
struct platform_intrinsics<__m128i>
0 commit comments