delete rb_vm_call()
Nobody uses it any longer.
This commit is contained in:
parent
dcb603bbdb
commit
fa7fa5c86b
@ -1671,8 +1671,6 @@ const rb_env_t *rb_vm_env_prev_env(const rb_env_t *env);
|
|||||||
const VALUE *rb_binding_add_dynavars(VALUE bindval, rb_binding_t *bind, int dyncount, const ID *dynvars);
|
const VALUE *rb_binding_add_dynavars(VALUE bindval, rb_binding_t *bind, int dyncount, const ID *dynvars);
|
||||||
void rb_vm_inc_const_missing_count(void);
|
void rb_vm_inc_const_missing_count(void);
|
||||||
void rb_vm_gvl_destroy(rb_vm_t *vm);
|
void rb_vm_gvl_destroy(rb_vm_t *vm);
|
||||||
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);
|
|
||||||
VALUE rb_vm_call_kw(rb_execution_context_t *ec, VALUE recv, VALUE id, int argc,
|
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);
|
const VALUE *argv, const rb_callable_method_entry_t *me, int kw_splat);
|
||||||
MJIT_STATIC void rb_vm_pop_frame(rb_execution_context_t *ec);
|
MJIT_STATIC void rb_vm_pop_frame(rb_execution_context_t *ec);
|
||||||
|
@ -261,12 +261,6 @@ rb_adjust_argv_kw_splat(int *argc, const VALUE **argv, int *kw_splat)
|
|||||||
return 0;
|
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
|
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)
|
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)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user