summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorNiels M?ller <nisse@lysator.liu.se>2020-01-24 04:38:57 +0100
committerNiels M?ller <nisse@lysator.liu.se>2020-01-24 04:38:57 +0100
commit73ebd62431aa96d24559552b50180b0145557f6c (patch)
treed3ba3fa319e29d08b63cea984e6583b13c1b7dda /ChangeLog
parent04f529b01f59c3aea6098ea2eee83e6228373e86 (diff)
downloadgmp-73ebd62431aa96d24559552b50180b0145557f6c.tar.gz
Make mpn_hgcd2_jacobi use the same div1 and div2 as mpn_hgcd2.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d729a9b93..9623884fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2020-01-24 Niels Möller <nisse@lysator.liu.se>
+ * mpn/generic/hgcd2_jacobi.c (div1, div2): Deleted. Instead,
+ include hgcd2-div.h, to reuse the tuned implementations for hgcd2.
+ (mpn_hgcd2_jacobi): Adapt to different return value for div1. Also
+ other small changes to make it identical to mpn_hgcd2, except for
+ the updates of the jacobi-related state.
+
* mpn/generic/hgcd2.c (div1, div2): Move inline functions...
* mpn/generic/hgcd2-div.h: ... to a separate file.