From 1e66c71a5e83a64a7e3e0890df6a751bc294627a Mon Sep 17 00:00:00 2001 From: mame Date: Sun, 14 Dec 2008 13:39:33 +0000 Subject: * bignum.c (bigmul1_karatsuba): remove temporal bignum. * bignum.c (bigsqr): call bigmul0(x, x) because it is faster than the original bigsqr at this point. * bignum.c (rb_big_pow): a value returned from bigsqr is already truncated. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 406f586e2..58609e0ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +Sun Dec 14 22:31:19 2008 Yusuke Endoh + + * bignum.c (bigmul1_karatsuba): remove temporal bignum. + + * bignum.c (bigsqr): call bigmul0(x, x) because it is faster than the + original bigsqr at this point. + + * bignum.c (rb_big_pow): a value returned from bigsqr is already + truncated. + Sun Dec 14 21:13:02 2008 Yusuke Endoh * bignum.c (bigmul1_karatsuba): fix comment and refactoring. -- cgit