We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcd49d4 commit 8f35df4Copy full SHA for 8f35df4
include/glaze/util/atoi.hpp
@@ -170,7 +170,7 @@ namespace glz::detail
170
// But MinGW on ARM64 doesn't have native support for 64-bit multiplications
171
answer.high = __umulh(a, b);
172
answer.low = a * b;
173
-#elif defined(GLZ_FASTFLOAT_32BIT) || (defined(_WIN64) && !defined(__clang__))
+#elif defined(GLZ_FASTFLOAT_32BIT) || (defined(_WIN64) && !defined(__clang__) && !defined(__MINGW32__))
174
answer.low = _umul128(a, b, &answer.high); // _umul128 not available on ARM64
175
#elif defined(GLZ_FASTFLOAT_64BIT) && defined(__SIZEOF_INT128__)
176
__uint128_t r = ((__uint128_t)a) * b;
0 commit comments