aboutsummaryrefslogtreecommitdiffstats
path: root/vm_exec.h
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-07-27 17:27:05 -0700
committerGitHub <noreply@github.com>2023-07-27 17:27:05 -0700
commit38be9a9b72d606024eb94900ed834b08493a1518 (patch)
tree7abc4724382a6d226eb4f9e2584fb606a477a8d6 /vm_exec.h
parentbf4d64d8d0a35a1e92707e0cb2706348f21eb9b5 (diff)
downloadruby-38be9a9b72d606024eb94900ed834b08493a1518.tar.gz
Clean up OPT_STACK_CACHING (#8132)
Diffstat (limited to 'vm_exec.h')
-rw-r--r--vm_exec.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/vm_exec.h b/vm_exec.h
index 41c4b74ffc..152410a6a7 100644
--- a/vm_exec.h
+++ b/vm_exec.h
@@ -21,11 +21,7 @@ typedef rb_iseq_t *ISEQ;
#define DEBUG_ENTER_INSN(insn) \
rb_vmdebug_debug_print_pre(ec, GET_CFP(), GET_PC());
-#if OPT_STACK_CACHING
-#define SC_REGS() , reg_a, reg_b
-#else
#define SC_REGS()
-#endif
#define DEBUG_END_INSN() \
rb_vmdebug_debug_print_post(ec, GET_CFP() SC_REGS());