Merge pull request #260 from fastfloat/intrin-for-umul

Include intrin.h for __umulh
This commit is contained in:
Daniel Lemire 2024-08-14 09:54:41 -04:00 committed by GitHub
commit 8f3dae6b9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,7 +84,8 @@ using parse_options = parse_options_t<char>;
#endif
#endif
#if ((defined(_WIN32) || defined(_WIN64)) && !defined(__clang__))
#if ((defined(_WIN32) || defined(_WIN64)) && !defined(__clang__)) || \
(defined(_M_ARM64) && !defined(__MINGW32__))
#include <intrin.h>
#endif