Skip to content

Commit aafbe09

Browse files
tenderloveKaanOzkan
authored andcommitted
clean
1 parent 7fefed8 commit aafbe09

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

vm_insnhelper.c

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6056,12 +6056,9 @@ vm_sendish(
60566056
val = vm_cc_call(cc)(ec, GET_CFP(), &calling);
60576057
break;
60586058
case mexp_search_invokeblock:
6059-
{
6060-
VALUE callee = VM_CF_BLOCK_HANDLER(GET_CFP());
6061-
calling.cc = cc = vm_invokeblock_fastpath(ec, GET_CFP(), cd, callee);
6062-
val = vm_cc_call(cc)(ec, GET_CFP(), &calling);
6063-
break;
6064-
}
6059+
calling.cc = cc = vm_invokeblock_fastpath(ec, GET_CFP(), cd, VM_CF_BLOCK_HANDLER(GET_CFP()));
6060+
val = vm_cc_call(cc)(ec, GET_CFP(), &calling);
6061+
break;
60656062
}
60666063
return val;
60676064
}

0 commit comments

Comments
 (0)