From c0bf2c5efec6e5c94236ca24cd35de5869ed7216 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 3 Apr 2015 02:43:20 +0000 Subject: vm_core.h: update for OPT_CALL_CFUNC_WITHOUT_FRAME * vm_eval.c (vm_call0_cfunc): update invoker arguments. * vm_insnhelper.c (vm_call_cfunc_latter): ditto. * vm_insnhelper.c (rb_vm_call_cfunc_push_frame): ditto, and prefix with rb_. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50154 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vm_core.h') diff --git a/vm_core.h b/vm_core.h index 25a5e8fbf6..7c775d8019 100644 --- a/vm_core.h +++ b/vm_core.h @@ -1035,8 +1035,8 @@ GET_THREAD(void) rb_thread_t *th = ruby_current_thread; #if OPT_CALL_CFUNC_WITHOUT_FRAME if (UNLIKELY(th->passed_ci != 0)) { - void vm_call_cfunc_push_frame(rb_thread_t *th); - vm_call_cfunc_push_frame(th); + void rb_vm_call_cfunc_push_frame(rb_thread_t *th); + rb_vm_call_cfunc_push_frame(th); } #endif return th; -- cgit v1.2.3