summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-12-12 22:01:52 -0800
committerKaz Kylheku <kaz@kylheku.com>2011-12-12 22:01:52 -0800
commit5a9bf359b9aca63f5eb26f5a371b0fae7dd353b4 (patch)
tree1dcf9463ed92bf267ec6be339dbfcff514d34257 /ChangeLog
parent705896d8c9d738de984e593a67ec008a16736276 (diff)
downloadtxr-5a9bf359b9aca63f5eb26f5a371b0fae7dd353b4.tar.gz
txr-5a9bf359b9aca63f5eb26f5a371b0fae7dd353b4.tar.bz2
txr-5a9bf359b9aca63f5eb26f5a371b0fae7dd353b4.zip
* mpi-patches/bit-search-optimizations (s_highest_bit): Added static
storage class specifier. * mpi-patches/fix-mult-bug (s_mp_sqr): More braindamage found in MPI. This function performs additions and multiplication mp_digit, expecting a mp_word precision result without casting. This function is needed for exponentiation.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ca49b56e..efd15251 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2011-12-12 Kaz Kylheku <kaz@kylheku.com>
+ * mpi-patches/bit-search-optimizations (s_highest_bit): Added static
+ storage class specifier.
+
+ * mpi-patches/fix-mult-bug (s_mp_sqr): More braindamage found in MPI.
+ This function performs additions and multiplication mp_digit,
+ expecting a mp_word precision result without casting. This function
+ is needed for exponentiation.
+
+2011-12-12 Kaz Kylheku <kaz@kylheku.com>
+
Git rid of some some loops in MPI where it is searching for
the highest bit, replacing them with an adapation of the
bit searching function used in arith.c.