summaryrefslogtreecommitdiff
path: root/proc.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-08-19 23:53:12 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-08-19 23:53:12 +0000
commit24da2db3e1eab67b6ee7be00d75b73beb273a4c4 (patch)
treec9885fd321617b032fefc19e873ae1a6c8e83189 /proc.c
parent82da3da5aca885fc7995c426696cb7798faad3d6 (diff)
vm_method.c: reuse method entry
* vm_method.c (rb_obj_respond_to): reuse found method entry instead of searching same entry repeatedly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51645 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/proc.c b/proc.c
index 0d8ae11f09..1ca975193b 100644
--- a/proc.c
+++ b/proc.c
@@ -2249,8 +2249,8 @@ method_def_location(const rb_method_definition_t *def)
return iseq_location(method_def_iseq(def));
}
-static VALUE
-method_entry_location(const rb_method_entry_t *me)
+VALUE
+rb_method_entry_location(const rb_method_entry_t *me)
{
if (!me) return Qnil;
return method_def_location(me->def);
@@ -2260,7 +2260,7 @@ VALUE
rb_mod_method_location(VALUE mod, ID id)
{
const rb_method_entry_t *me = original_method_entry(mod, id);
- return method_entry_location(me);
+ return rb_method_entry_location(me);
}
VALUE