mirror of
https://github.com/ruby/ruby.git
synced 2026-01-29 21:44:28 +00:00
* bignum.c (bigmul1_normal): Shrink the result Bignum length.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41310 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
54a22fb8c7
commit
919cc1e53e
@ -1,3 +1,7 @@
|
||||
Sat Jun 15 17:14:32 2013 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* bignum.c (bigmul1_normal): Shrink the result Bignum length.
|
||||
|
||||
Sat Jun 15 10:19:42 2013 Zachary Scott <zachary@zacharyscott.net>
|
||||
|
||||
* ext/bigdecimal/bigdecimal.c: Update overview formatting of headers
|
||||
|
||||
2
bignum.c
2
bignum.c
@ -3139,7 +3139,7 @@ bigmul1_single(VALUE x, VALUE y)
|
||||
static VALUE
|
||||
bigmul1_normal(VALUE x, VALUE y)
|
||||
{
|
||||
long xl = RBIGNUM_LEN(x), yl = RBIGNUM_LEN(y), i, j = xl + yl + 1;
|
||||
long xl = RBIGNUM_LEN(x), yl = RBIGNUM_LEN(y), i, j = xl + yl;
|
||||
BDIGIT_DBL n = 0;
|
||||
VALUE z = bignew(j, RBIGNUM_SIGN(x)==RBIGNUM_SIGN(y));
|
||||
BDIGIT *xds, *yds, *zds;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user