summaryrefslogtreecommitdiffstats
path: root/mpi-patches/shrink-mpi-int
diff options
context:
space:
mode:
Diffstat (limited to 'mpi-patches/shrink-mpi-int')
-rw-r--r--mpi-patches/shrink-mpi-int18
1 files changed, 0 insertions, 18 deletions
diff --git a/mpi-patches/shrink-mpi-int b/mpi-patches/shrink-mpi-int
deleted file mode 100644
index bac2aafb..00000000
--- a/mpi-patches/shrink-mpi-int
+++ /dev/null
@@ -1,18 +0,0 @@
-Index: mpi-1.8.6/mpi.h
-===================================================================
---- mpi-1.8.6.orig/mpi.h 2011-12-27 14:01:24.628295000 -0800
-+++ mpi-1.8.6/mpi.h 2011-12-27 14:46:02.227842000 -0800
-@@ -72,8 +72,13 @@
- #define MAX_RADIX 64
-
- typedef struct {
-+#if SIZEOF_INT >= SIZEOF_PTR
-+ unsigned int sign : 1;
-+ unsigned int alloc : sizeof(int)*CHAR_BIT - 1;
-+#else
- mp_sign sign; /* sign of this quantity */
- mp_size alloc; /* how many digits allocated */
-+#endif
- mp_size used; /* how many digits used */
- mp_digit *dp; /* the digits themselves */
- } mp_int;