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 7b21183 commit 409d621Copy full SHA for 409d621
include/fast_float/float_common.h
@@ -407,7 +407,7 @@ full_multiplication(uint64_t a, uint64_t b) {
407
answer.high = __umulh(a, b);
408
answer.low = a * b;
409
#elif defined(FASTFLOAT_32BIT) || \
410
- (defined(_WIN64) && !defined(__clang__) && !defined(_M_ARM64))
+ (defined(_WIN64) && !defined(__clang__) && !defined(_M_ARM64) && !defined(__GNUC__))
411
answer.low = _umul128(a, b, &answer.high); // _umul128 not available on ARM64
412
#elif defined(FASTFLOAT_64BIT) && defined(__SIZEOF_INT128__)
413
__uint128_t r = ((__uint128_t)a) * b;
0 commit comments