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 9117ec4 commit 2609d5fCopy full SHA for 2609d5f
include/fast_float/float_common.h
@@ -344,6 +344,8 @@ full_multiplication(uint64_t a, uint64_t b) {
344
answer.high = __umulh(a, b);
345
answer.low = a * b;
346
#elif defined(FASTFLOAT_32BIT) || (defined(_WIN64) && !defined(__clang__))
347
+#elif defined(FASTFLOAT_32BIT) || (defined(_WIN64) && !defined(__clang__) \
348
+ && !defined(_M_ARM64))
349
answer.low = _umul128(a, b, &answer.high); // _umul128 not available on ARM64
350
#elif defined(FASTFLOAT_64BIT) && defined(__SIZEOF_INT128__)
351
__uint128_t r = ((__uint128_t)a) * b;
0 commit comments