summaryrefslogtreecommitdiff
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index c5584d4d40..57f6d91e88 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -345,21 +345,6 @@ vm_push_frame(rb_execution_context_t *ec,
return cfp;
}
-rb_control_frame_t *
-rb_vm_push_frame(rb_execution_context_t *ec,
- const rb_iseq_t *iseq,
- VALUE type,
- VALUE self,
- VALUE specval,
- VALUE cref_or_me,
- const VALUE *pc,
- VALUE *sp,
- int local_size,
- int stack_max)
-{
- return vm_push_frame(ec, iseq, type, self, specval, cref_or_me, pc, sp, local_size, stack_max);
-}
-
/* return TRUE if the frame is finished */
static inline int
vm_pop_frame(rb_execution_context_t *ec, rb_control_frame_t *cfp, const VALUE *ep)