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/add-mp-set-intptr | |
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/add-mp-set-intptr')
-rw-r--r-- | mpi-patches/add-mp-set-intptr | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mpi-patches/add-mp-set-intptr b/mpi-patches/add-mp-set-intptr index 87e4ebb4..cbaa9bf4 100644 --- a/mpi-patches/add-mp-set-intptr +++ b/mpi-patches/add-mp-set-intptr @@ -1,8 +1,8 @@ Index: mpi-1.8.6/mpi.c =================================================================== ---- mpi-1.8.6.orig/mpi.c 2011-12-10 18:20:55.000000000 -0800 -+++ mpi-1.8.6/mpi.c 2011-12-10 19:40:53.000000000 -0800 -@@ -528,6 +528,59 @@ +--- mpi-1.8.6.orig/mpi.c 2015-02-07 19:32:35.248929450 -0800 ++++ mpi-1.8.6/mpi.c 2015-02-07 19:32:37.136895701 -0800 +@@ -526,6 +526,59 @@ /* }}} */ @@ -64,8 +64,8 @@ Index: mpi-1.8.6/mpi.c Index: mpi-1.8.6/mpi.h =================================================================== ---- mpi-1.8.6.orig/mpi.h 2011-12-10 18:19:39.000000000 -0800 -+++ mpi-1.8.6/mpi.h 2011-12-10 19:39:58.000000000 -0800 +--- mpi-1.8.6.orig/mpi.h 2015-02-07 19:32:35.236929664 -0800 ++++ mpi-1.8.6/mpi.h 2015-02-07 19:32:37.136895701 -0800 @@ -94,6 +94,8 @@ void mp_zero(mp_int *mp); void mp_set(mp_int *mp, mp_digit d); |