From 638a7a9c546f867882ee3d19af458bb25f62fb01 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 1 Sep 2007 12:02:36 +0000 Subject: * include/ruby/ruby.h (struct RBignum): embed digits in RBignum for small bignums. * bignum.c: RBignum embeded digits implemented. * include/ruby/intern.h: declare rb_big_resize. * gc.c: don't free embedded digits. * numeric.c: replace direct bignum field accessor by abstract field accessor such as RBIGNUM(val)->sign to RBIGNUM_SIGN(val). * sprintf.c: ditto. * compar.c: ditto. * marshal.c: ditto. * random.c: ditto. * .gdbinit: support embedded small bignums. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13330 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 4e2abeb83..b8803fef9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,27 @@ +Sat Sep 1 20:56:07 2007 Tanaka Akira + + * include/ruby/ruby.h (struct RBignum): embed digits in RBignum for + small bignums. + + * bignum.c: RBignum embeded digits implemented. + + * include/ruby/intern.h: declare rb_big_resize. + + * gc.c: don't free embedded digits. + + * numeric.c: replace direct bignum field accessor by abstract field + accessor such as RBIGNUM(val)->sign to RBIGNUM_SIGN(val). + + * sprintf.c: ditto. + + * compar.c: ditto. + + * marshal.c: ditto. + + * random.c: ditto. + + * .gdbinit: support embedded small bignums. + Sat Sep 1 19:59:43 2007 Masaki Suketa * ext/win32ole/win32ole.c (ole_event_free): IConnectionPoint should be -- cgit