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/fix-ctype-warnings | |
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/fix-ctype-warnings')
-rw-r--r-- | mpi-patches/fix-ctype-warnings | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mpi-patches/fix-ctype-warnings b/mpi-patches/fix-ctype-warnings index aa84542d..5ec95101 100644 --- a/mpi-patches/fix-ctype-warnings +++ b/mpi-patches/fix-ctype-warnings @@ -1,8 +1,8 @@ Index: mpi-1.8.6/mpi.c =================================================================== ---- mpi-1.8.6.orig/mpi.c 2014-02-19 19:01:29.294491437 -0800 -+++ mpi-1.8.6/mpi.c 2014-02-19 19:01:39.562347737 -0800 -@@ -200,7 +200,7 @@ +--- mpi-1.8.6.orig/mpi.c 2015-02-07 19:33:14.608233363 -0800 ++++ mpi-1.8.6/mpi.c 2015-02-07 19:33:17.280186661 -0800 +@@ -198,7 +198,7 @@ int s_mp_ispow2(mp_int *v); /* is v a power of 2? */ int s_mp_ispow2d(mp_digit d); /* is d a power of 2? */ @@ -11,7 +11,7 @@ Index: mpi-1.8.6/mpi.c char s_mp_todigit(int val, int r, int low); /* convert val to digit */ int s_mp_outlen(int bits, int r); /* output length in bytes */ -@@ -4264,7 +4264,7 @@ +@@ -4262,7 +4262,7 @@ The results will be odd if you use a radix < 2 or > 62, you are expected to know what you're up to. */ @@ -20,7 +20,7 @@ Index: mpi-1.8.6/mpi.c { int val, xch; -@@ -4308,7 +4308,7 @@ +@@ -4306,7 +4306,7 @@ char s_mp_todigit(int val, int r, int low) { |