From 8e5f90fa969ea74da4044ebca9a5325ac5a5d11d Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 27 May 2009 16:16:57 +0000 Subject: * bignum.c (bigand_int): new function to calculate bignum and fixnum without allocating internal bignum. * bignum.c (bigor_int): ditto. * bignum.c (bigxor_int): ditto. * bignum.c (bigand_int): even less object allocation. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23596 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index eb831b1fb..9a187b7e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,17 @@ Wed May 27 23:00:38 2009 Nobuyoshi Nakada * parse.y (struct parser_params): lex_gets_ptr should be long. +Wed May 27 18:00:15 2009 Yukihiro Matsumoto + + * bignum.c (bigand_int): new function to calculate bignum and + fixnum without allocating internal bignum. + + * bignum.c (bigor_int): ditto. + + * bignum.c (bigxor_int): ditto. + + * bignum.c (bigand_int): even less object allocation. + Wed May 27 14:08:39 2009 Yukihiro Matsumoto * st.c (st_insert2): new function with processing new key, -- cgit