From ec9089637eea240b60bb340bf82737926c753a84 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 5 Oct 2009 14:35:39 +0000 Subject: * array.c (rb_ary_{times, shuffle_bang, sample}): reducing macro calls inside of the loop by keeping pointers in local variables. a patch from Masahiro Kanai (CanI) in [ruby-dev:39406]. It was found and fixed at Security and Programming camp 2009. * string.c (rb_str_{times, split_m}): ditto. * struct.c (rb_struct_{getmember, set, aref_id, aset_id}, {make, inspect}_struct, recursive_{equal, hash, eql}): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25237 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 6c4dc09a0..4f1117bd0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +Mon Oct 5 12:22:12 2009 Yukihiro Matsumoto + + * array.c (rb_ary_{times, shuffle_bang, sample}): reducing macro + calls inside of the loop by keeping pointers in local + variables. a patch from Masahiro Kanai (CanI) in [ruby-dev:39406]. + It was found and fixed at Security and Programming camp 2009. + + * string.c (rb_str_{times, split_m}): ditto. + + * struct.c (rb_struct_{getmember, set, aref_id, aset_id}, {make, + inspect}_struct, recursive_{equal, hash, eql}): ditto. + Mon Oct 5 00:09:57 2009 Yukihiro Matsumoto * vm_method.c (basic_obj_respond_to): should not call -- cgit