summaryrefslogtreecommitdiff
path: root/vm_eval.c
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2019-12-18 13:03:54 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2019-12-18 14:14:51 +0900
commitfa7fa5c86b0674eca233922045e4d3dd4ee49cb7 (patch)
treeff23e9d1b24f225c68e5eecc107b0e5a1fde9dbd /vm_eval.c
parentdcb603bbdbe3a8ea6f6d07198c8711cf9a44a4d2 (diff)
delete rb_vm_call()
Nobody uses it any longer.
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/vm_eval.c b/vm_eval.c
index 54a4036ae7..bd30b89a2f 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -261,12 +261,6 @@ rb_adjust_argv_kw_splat(int *argc, const VALUE **argv, int *kw_splat)
return 0;
}
-VALUE
-rb_vm_call(rb_execution_context_t *ec, VALUE recv, VALUE id, int argc, const VALUE *argv, const rb_callable_method_entry_t *me)
-{
- return rb_vm_call0(ec, recv, id, argc, argv, me, RB_NO_KEYWORDS);
-}
-
MJIT_FUNC_EXPORTED VALUE
rb_vm_call_kw(rb_execution_context_t *ec, VALUE recv, VALUE id, int argc, const VALUE *argv, const rb_callable_method_entry_t *me, int kw_splat)
{