1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Koichi Sasada 2020-12-16 10:36:23 +09:00
parent dff67c809f
commit 171f0431e7

View file

@ -1725,7 +1725,7 @@ rb_vm_search_method_slowpath(const struct rb_callinfo *ci, VALUE klass)
#endif #endif
static const struct rb_callcache * static const struct rb_callcache *
vm_search_method_swlopath0(VALUE cd_owner, struct rb_call_data *cd, VALUE klass) vm_search_method_slowpath0(VALUE cd_owner, struct rb_call_data *cd, VALUE klass)
{ {
#if USE_DEBUG_COUNTER #if USE_DEBUG_COUNTER
const struct rb_callcache *old_cc = cd->cc; const struct rb_callcache *old_cc = cd->cc;
@ -1794,7 +1794,7 @@ vm_search_method_fastpath(VALUE cd_owner, struct rb_call_data *cd, VALUE klass)
} }
#endif #endif
return vm_search_method_swlopath0(cd_owner, cd, klass); return vm_search_method_slowpath0(cd_owner, cd, klass);
} }
static const struct rb_callcache * static const struct rb_callcache *