From 90fc5552580b8d6223a513dfa6ee5d0f8532b22a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3?= Date: Fri, 8 Nov 2019 12:07:03 +0900 Subject: name the result of calccall This is a pure refactoring for better understanding of what is happening here. Should change nothing but readability. --- vm_insnhelper.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'vm_insnhelper.c') diff --git a/vm_insnhelper.c b/vm_insnhelper.c index 6548233257..890cbf6659 100644 --- a/vm_insnhelper.c +++ b/vm_insnhelper.c @@ -1422,14 +1422,15 @@ rb_vm_search_method_slowpath(struct rb_call_data *cd, VALUE klass) struct rb_call_cache *cc = &cd->cc; const rb_callable_method_entry_t *me = rb_callable_method_entry(klass, ci->mid); + const vm_call_handler call = calccall(cd, me); struct rb_call_cache buf = { GET_GLOBAL_METHOD_STATE(), { RCLASS_SERIAL(klass) }, me, me ? me->def : NULL, - calccall(cd, me), + call, }; - if (buf.call != vm_call_general) { + if (call != vm_call_general) { for (int i = 0; i < numberof(cc->class_serial) - 1; i++) { buf.class_serial[i + 1] = cc->class_serial[i]; } -- cgit v1.2.3