aboutsummaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-03 02:43:20 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-03 02:43:20 +0000
commitc0bf2c5efec6e5c94236ca24cd35de5869ed7216 (patch)
tree2e90248c9c584d266fd13702310987c64a123136 /vm_core.h
parent337fafc64147d32cce5c509f8c841b4e5e846d60 (diff)
downloadruby-c0bf2c5efec6e5c94236ca24cd35de5869ed7216.tar.gz
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
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h4
1 files changed, 2 insertions, 2 deletions
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;