aboutsummaryrefslogtreecommitdiffstats
path: root/vm_exec.h
diff options
context:
space:
mode:
Diffstat (limited to 'vm_exec.h')
-rw-r--r--vm_exec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm_exec.h b/vm_exec.h
index caf752a76b..4f8b030e68 100644
--- a/vm_exec.h
+++ b/vm_exec.h
@@ -38,7 +38,7 @@ typedef rb_iseq_t *ISEQ;
#if VMDEBUG > 0
#define debugs printf
#define DEBUG_ENTER_INSN(insn) \
- debug_print_pre(th, GET_CFP());
+ rb_vmdebug_debug_print_pre(th, GET_CFP());
#if OPT_STACK_CACHING
#define SC_REGS() , reg_a, reg_b
@@ -47,7 +47,7 @@ typedef rb_iseq_t *ISEQ;
#endif
#define DEBUG_END_INSN() \
- debug_print_post(th, GET_CFP() SC_REGS());
+ rb_vmdebug_debug_print_post(th, GET_CFP() SC_REGS());
#else