Skip to content

Commit 2e772cb

Browse files
committed
Add in the large component first.
1 parent 5d165be commit 2e772cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/mathmodule.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -2903,8 +2903,8 @@ static inline DoubleLength
29032903
dl_fma(DoubleLength total, double p, double q)
29042904
{
29052905
DoubleLength product = dl_mul(p, q);
2906-
total = dl_add(total, product.lo);
2907-
return dl_add(total, product.hi);
2906+
total = dl_add(total, product.hi);
2907+
return dl_add(total, product.lo);
29082908
}
29092909

29102910
static inline double

0 commit comments

Comments
 (0)