diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-05-23 15:45:28 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-05-23 15:45:28 +0000 |
commit | b02f8e0ff3b88b2139667d37ebd063efa372d3c6 (patch) | |
tree | 7e083c044a9b954c3bc7309065e5800c09c96019 /dev-lang/mlton/files | |
parent | Remove old. (diff) | |
download | gentoo-2-b02f8e0ff3b88b2139667d37ebd063efa372d3c6.tar.gz gentoo-2-b02f8e0ff3b88b2139667d37ebd063efa372d3c6.tar.bz2 gentoo-2-b02f8e0ff3b88b2139667d37ebd063efa372d3c6.zip |
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-lang/mlton/files')
-rw-r--r-- | dev-lang/mlton/files/mlton-20100608-gmp-const.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/dev-lang/mlton/files/mlton-20100608-gmp-const.patch b/dev-lang/mlton/files/mlton-20100608-gmp-const.patch deleted file mode 100644 index df95704e8dcf..000000000000 --- a/dev-lang/mlton/files/mlton-20100608-gmp-const.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- mlton-20100608-orig/runtime/gc/int-inf.c 2010-06-11 23:35:14.000000000 +1000 -+++ mlton-20100608/runtime/gc/int-inf.c 2013-04-25 16:45:45.528297232 +1000 -@@ -177,8 +177,8 @@ - - static inline objptr binary (objptr lhs, objptr rhs, size_t bytes, - void(*binop)(__mpz_struct *resmpz, -- __gmp_const __mpz_struct *lhsspace, -- __gmp_const __mpz_struct *rhsspace)) { -+ const __mpz_struct *lhsspace, -+ const __mpz_struct *rhsspace)) { - __mpz_struct lhsmpz, rhsmpz, resmpz; - mp_limb_t lhsspace[LIMBS_PER_OBJPTR + 1], rhsspace[LIMBS_PER_OBJPTR + 1]; - -@@ -254,7 +254,7 @@ - - static objptr unary (objptr arg, size_t bytes, - void(*unop)(__mpz_struct *resmpz, -- __gmp_const __mpz_struct *argspace)) { -+ const __mpz_struct *argspace)) { - __mpz_struct argmpz, resmpz; - mp_limb_t argspace[LIMBS_PER_OBJPTR + 1]; - -@@ -280,7 +280,7 @@ - - static objptr shary (objptr arg, Word32_t shift, size_t bytes, - void(*shop)(__mpz_struct *resmpz, -- __gmp_const __mpz_struct *argspace, -+ const __mpz_struct *argspace, - unsigned long shift)) - { - __mpz_struct argmpz, resmpz; |