From 4dd7a13a0a00d66592049e1f9a79a9cfddf11a07 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 1 Sep 2013 13:38:49 +0000 Subject: [PATCH] * bignum.c (bary_mul_gmp): Use mpz_init and mpz_clear instead of mpz_inits and mpz_clears. Older GMP don't have them. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42761 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ bignum.c | 8 ++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index aed11722bf..8b5160346d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sun Sep 1 22:37:51 2013 Tanaka Akira + + * bignum.c (bary_mul_gmp): Use mpz_init and mpz_clear instead of + mpz_inits and mpz_clears. + Older GMP don't have them. + Sun Sep 1 21:17:54 2013 Tanaka Akira * test/net/http/test_http.rb (test_bind_to_local_port): Choose an open diff --git a/bignum.c b/bignum.c index 971678b3d3..7a6e1f2934 100644 --- a/bignum.c +++ b/bignum.c @@ -2262,7 +2262,9 @@ bary_mul_gmp(BDIGIT *zds, size_t zn, const BDIGIT *xds, size_t xn, const BDIGIT assert(xn + yn <= zn); - mpz_inits(x, y, z, 0); + mpz_init(x); + mpz_init(y); + mpz_init(z); mpz_import(x, xn, -1, sizeof(BDIGIT), 0, nails, xds); if (xds == yds && xn == yn) { mpz_mul(z, x, x); @@ -2273,7 +2275,9 @@ bary_mul_gmp(BDIGIT *zds, size_t zn, const BDIGIT *xds, size_t xn, const BDIGIT } mpz_export (zds, &count, -1, sizeof(BDIGIT), 0, nails, z); BDIGITS_ZERO(zds+count, zn-count); - mpz_clears(x, y, z, 0); + mpz_clear(x); + mpz_clear(y); + mpz_clear(z); } VALUE