diff options
author | shugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-12-17 13:15:20 +0000 |
---|---|---|
committer | shugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-12-17 13:15:20 +0000 |
commit | d7b2ecccebf260a48762e637c01febb74f9f4ba8 (patch) | |
tree | 5f90e2f1e5f78352aba7b7cdf81f62dcb172ed21 | |
parent | 94b3c4121bce5b7a9a181a10bc1a9f31fa6f4940 (diff) |
* vm_args.c (vm_caller_setup_arg_block): remove code for ifunc
because it was made unnecessary by r52138.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53171 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | vm_args.c | 5 |
2 files changed, 5 insertions, 5 deletions
@@ -1,3 +1,8 @@ +Thu Dec 17 22:13:10 2015 Shugo Maeda <[email protected]> + + * vm_args.c (vm_caller_setup_arg_block): remove code for ifunc + because it was made unnecessary by r52138. + Thu Dec 17 16:13:10 2015 Shugo Maeda <[email protected]> * proc.c (rb_block_arity): should not call GetProcPtr() for symbols. @@ -785,11 +785,6 @@ vm_caller_setup_arg_block(const rb_thread_t *th, rb_control_frame_t *reg_cfp, calling->blockptr->iseq = (rb_iseq_t *)proc; calling->blockptr->proc = proc; } - else if (RUBY_VM_IFUNC_P(proc)) { - calling->blockptr = RUBY_VM_GET_BLOCK_PTR_IN_CFP(reg_cfp); - calling->blockptr->iseq = (rb_iseq_t *)proc; - calling->blockptr->proc = proc; - } else { if (!rb_obj_is_proc(proc)) { VALUE b; |