* array.c (rb_ary_eql): compare RARRAY_PTR() for performance

improvement in case of that self and other are shared.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42046 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
glass 2013-07-18 14:47:27 +00:00
parent c366a99cc5
commit 2de786d437
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Thu Jul 18 23:45:06 2013 Masaki Matsushita <glass.saga@gmail.com>
* array.c (rb_ary_eql): compare RARRAY_PTR() for performance
improvement in case of that self and other are shared.
Thu Jul 18 22:46:42 2013 Zachary Scott <e@zzak.io>
* lib/cgi.rb: [DOC] Capitalize "Ruby" in documentation [Fixes GH-341]

View File

@ -3668,6 +3668,7 @@ rb_ary_eql(VALUE ary1, VALUE ary2)
if (ary1 == ary2) return Qtrue;
if (!RB_TYPE_P(ary2, T_ARRAY)) return Qfalse;
if (RARRAY_LEN(ary1) != RARRAY_LEN(ary2)) return Qfalse;
if (RARRAY_PTR(ary1) == RARRAY_PTR(ary2)) return Qtrue;
return rb_exec_recursive_paired(recursive_eql, ary1, ary2, ary2);
}