diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-02-07 19:36:32 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-02-07 19:36:32 -0800 |
commit | 91664c356f4eb1f31a90f36d369bceb386466f42 (patch) | |
tree | 61d2714a2805c484749f65566cde2635926bb326 /mpi-patches/faster-square-root | |
parent | cbd2937606577580931b1de05bd18bf10de736ca (diff) | |
download | txr-91664c356f4eb1f31a90f36d369bceb386466f42.tar.gz txr-91664c356f4eb1f31a90f36d369bceb386466f42.tar.bz2 txr-91664c356f4eb1f31a90f36d369bceb386466f42.zip |
* Makefile (CFLAGS): Removed puzzling, unnecessary definitions
of XMALLOC, XCALLOC, XREALLOC and XFREE for $(MPI_OBJS). MPI
does not use such macros and the allocator is already retargetted
to use the TXR one.
* mpi-patches/use-txr-allocator: In this patch, we don't need
external declaration for chk_malloc or chk_realloc because they
are not used. Only chk_calloc is used.
* mpi-patches/add-bitops: Refreshed.
* mpi-patches/add-mp-hash: Likewise.
* mpi-patches/add-mp-set-intptr: Likewise.
* mpi-patches/add-mpi-toradix-with-case: Likewise.
* mpi-patches/bit-search-optimizations: Likewise.
* mpi-patches/export-mp-eq: Likewise.
* mpi-patches/faster-square-root: Likewise.
* mpi-patches/fix-bad-shifts: Likewise.
* mpi-patches/fix-ctype-warnings: Likewise.
* mpi-patches/fix-mult-bug: Likewise.
* mpi-patches/mpi-set-double-intptr: Likewise.
* mpi-patches/mpi-set-mpi-word: Likewise.
* mpi-patches/mpi-to-double: Likewise.
Diffstat (limited to 'mpi-patches/faster-square-root')
-rw-r--r-- | mpi-patches/faster-square-root | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mpi-patches/faster-square-root b/mpi-patches/faster-square-root index 36fa4993..c8663314 100644 --- a/mpi-patches/faster-square-root +++ b/mpi-patches/faster-square-root @@ -1,8 +1,8 @@ Index: mpi-1.8.6/mpi.c =================================================================== ---- mpi-1.8.6.orig/mpi.c 2014-02-17 22:25:46.042680203 -0800 -+++ mpi-1.8.6/mpi.c 2014-02-19 19:00:21.279452088 -0800 -@@ -158,6 +158,9 @@ +--- mpi-1.8.6.orig/mpi.c 2015-02-07 19:33:04.528410164 -0800 ++++ mpi-1.8.6/mpi.c 2015-02-07 19:33:11.780282866 -0800 +@@ -156,6 +156,9 @@ mp_err s_mp_grow(mp_int *mp, mp_size min); /* increase allocated size */ mp_err s_mp_pad(mp_int *mp, mp_size min); /* left pad with zeroes */ @@ -12,7 +12,7 @@ Index: mpi-1.8.6/mpi.c void s_mp_clamp(mp_int *mp); /* clip leading zeroes */ void s_mp_exch(mp_int *a, mp_int *b); /* swap a and b in place */ -@@ -1535,77 +1538,61 @@ +@@ -1533,77 +1536,61 @@ /* {{{ mp_sqrt(a, b) */ @@ -136,7 +136,7 @@ Index: mpi-1.8.6/mpi.c /* }}} */ -@@ -2554,21 +2541,9 @@ +@@ -2552,21 +2539,9 @@ int mp_count_bits(mp_int *mp) { @@ -159,7 +159,7 @@ Index: mpi-1.8.6/mpi.c } /* end mp_count_bits() */ /* }}} */ -@@ -3132,6 +3107,27 @@ +@@ -3130,6 +3105,27 @@ abort(); } |