mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-06 08:46:49 +08:00
Include intrin.h for __umulh
Arm64 uses __umulh, so add the same condition for including the intrin.h header.
This commit is contained in:
parent
d57ca3da1f
commit
74e3c29215
@ -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
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user